
/* assets/css/auth_style.css */

body {
    background: linear-gradient(-45deg, #f0f2f5, #e6e9ed, #f0f2f5, #d9dde2);
    background-size: 400% 400%;
    animation: gradientBG 15s ease infinite;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

@keyframes gradientBG {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.auth-container {
    width: 100%;
    max-width: 450px;
    padding: 20px;
}

.auth-card {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.07);
    padding: 40px;
    width: 100%;
    border: 1px solid #e9ecef;
}

.auth-logo {
    text-align: center;
    margin-bottom: 2rem;
}

.auth-logo img {
    max-height: 45px;
}

.nav-tabs-custom .nav-item .nav-link {
    border: none;
    color: #6c757d;
    font-weight: 600;
    padding: 1rem 0;
    margin: 0 1.5rem;
}

.nav-tabs-custom .nav-item .nav-link.active {
    color: #007bff;
    border-bottom: 2px solid #007bff;
    background-color: transparent;
}

.nav-tabs-custom {
    border-bottom: 1px solid #dee2e6;
    justify-content: center;
    margin-bottom: 2rem;
}

.form-control {
    height: 48px;
    border-radius: 8px;
    border: 1px solid #ced4da;
    background-color: #f8f9fa;
    padding: 0 15px;
}

.form-control:focus {
    background-color: #fff;
    border-color: #80bdff;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.btn-primary {
    height: 48px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    background-color: #007bff;
    border-color: #007bff;
    transition: all 0.2s ease-in-out;
}

.btn-primary:hover {
    background-color: #0069d9;
    border-color: #0062cc;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.2);
}

.input-group-append .btn {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    height: 48px;
}

.auth-footer-link {
    text-align: center;
    margin-top: 1.5rem;
    color: #6c757d;
}

.auth-footer-link a {
    color: #007bff;
    font-weight: 600;
}

/* Remove old layout */
.col-xl-7.bglogo, .auth-full-bg {
    display: none !important;
}
.col-xl-5 {
    flex: 0 0 100%;
    max-width: 100%;
}
.auth-full-page-content {
    padding: 0 !important;
}
.login_right {
    margin: 0 !important;
}
