.bg-authentication #icon-arrow {
    position: absolute;
    top: 10px;
    left: 15px;
}

.bg-authentication .brand-text {
    color: #5A8DEE;
    font-weight: 700;
}

@media only screen and (min-width: 992px) {
    .bg-authentication .disable-rounded-right {
        border-top-left-radius: 0;
        border-bottom-left-radius: 0;
    }
}

@media screen and (-ms-high-contrast: active),
(-ms-high-contrast: none) {
    .bg-authentication {
        width: 100%;
        display: block;
    }
}

.card-auth {
    background: #dadada14;
}

.bg-authentication {
    border-radius: 10px;
    overflow: hidden;
}

.btn-social {
    transition: all 0.2s ease;
    border-radius: 6px;
    font-weight: 500;
    padding: 8px;
    font-size: 0.9rem;
}

.btn-social:hover {
    transform: translateY(-1px);
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
}

.form-control {
    border-radius: 6px;
    padding: 8px;
    font-size: 0.9rem;
    transition: border-color 0.2s ease;
}

.form-control:focus {
    border-color: #007bff;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.15);
}

.captcha-container {
    display: flex;
    align-items: center;
    gap: 8px;
}

.captcha-img {
    border-radius: 6px;
    max-width: 120px;
}

.captcha-refresh {
    cursor: pointer;
    font-size: 1.2rem;
    color: #007bff;
    transition: transform 0.3s ease, color 0.2s ease;
}

.captcha-refresh:hover {
    transform: rotate(360deg);
    color: #0056b3;
}

.btn-primary {
    background: #007bff;
    border: none;
    border-radius: 6px;
    padding: 10px;
    font-weight: 500;
    font-size: 0.9rem;
}

.btn-primary:hover {
    background: #0056b3;
}

.btn-cancel {
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 6px;
    padding: 10px;
    font-size: 0.9rem;
    color: #495057;
    transition: all 0.2s ease;
}

.btn-cancel:hover {
    background: #e9ecef;
    color: #343a40;
}

.divider-text {
    font-size: 0.8rem;
    color: #6c757d;
    margin: 10px 0;
}

.form-group {
    margin-bottom: 12px;
}

.form-group label {
    font-size: 0.9rem;
    color: #495057;
    margin-bottom: 4px;
}

.card-body {
    padding: 1.5rem !important;
}

.button-group {
    display: flex;
    gap: 10px;
}

.captcha-error {
    color: #dc3545;
    font-size: 0.8rem;
    margin-top: 5px;
    display: none;
}

@media (max-width: 768px) {
    .bg-authentication {
        margin: 10px;
    }

    .btn-social {
        margin-bottom: 8px;
    }

    .card-body {
        padding: 1rem !important;
    }

    .button-group {
        flex-direction: column;
        gap: 8px;
    }
}