/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: #ffffff;
    color: #1a1a1a;
    line-height: 1.5;
    overflow-x: hidden;
}

/* Main Container */
.container-fluid {
    padding: 0;
    background-color: #ffffff;
    height: 100vh;
    max-width: 100%;
}

/* Auth Form Container */
.auth-form-container {
   max-width: 400px;
    width: 100%;
    padding: 0 1.5rem;
}

/* Logo Section */
.logo-section {
    margin-bottom: 2rem;
}

.logo-img {
    width: 92px;
    height: 32px;
    text-align: center;
}


.logo-com {
    font-size: 0.75rem;
    font-weight: 400;
    color: #6b7280;
}

/* Auth Header */
.auth-header {
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.auth-title {
    font-size: 30px;
    font-weight: 600;
    color: #101828;
    margin-bottom: 0.5rem;
    line-height: 38px;
}

.auth-subtitle {
    font-size: 16px;
    color: #475467;
    margin: 0;
    font-weight: 400;
}

/* Form Styles */
.auth-form {
    width: 100%;
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.5rem;
    display: block;
}

.form-control {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 0.875rem;
    transition: all 0.2s ease;
    color: #1a1a1a;
}


.form-control::placeholder {
    color: #9ca3af;
    font-size: 0.875rem;
}

.password-hint {
    font-size: 0.75rem;
    color: #6b7280;
    margin-top: 0.25rem;
}

/* Button Styles */
.btn-get-started,
.btn-signin {
    background: #FE8267;
    border: none;
    color: #ffffff;
    font-size: 0.875rem;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 900px;
    transition: none;
    text-transform: none;
}

.btn-get-started:hover,
.btn-signin:hover {
    background: #FE8267 !important;
    color: #ffffff !important;
}

.btn-get-started:active,
.btn-signin:active {
    background: #FE8267 !important;
    color: #ffffff !important;
}

.btn-google {
    background-color: #ffffff;
    border: 1px solid #D0D5DD;
    color: #374151;
    font-size: 0.875rem;
    font-weight: 500;
    padding: 0.75rem 1.5rem;
    border-radius: 58px;
    transition: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-google img {
    width: 24px;
    height: 24px;
    margin-right: 0.5rem;
}

.btn-google:hover {
    background-color: #ffffff !important;
    border-color: #D0D5DD !important;
    color: #374151 !important;
}

.btn-google:active {
    background-color: #ffffff !important;
}



/* Login Link */
.login-text {
    color: #6b7280;
    font-size: 0.875rem;
}

.login-link {
    color: #f59e0b;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
    transition: none;
}

.login-link:hover {
    color: #f59e0b;
    text-decoration: none;
}

/* Forgot Password Link */
.forgot-password-link {
    color: #f59e0b;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: none;
}

.forgot-password-link:hover {
    color: #f59e0b;
    text-decoration: none;
}

/* Form Check (Remember Me) */
.form-check {
    display: flex;
    align-items: center;
}

.form-check-input {
    width: 1rem;
    height: 1rem;
    margin-right: 0.5rem;
    border: 1px solid #d1d5db;
    border-radius: 4px;
    transition: none;
}

.form-check-input:checked {
    background-color: #f59e0b;
    border-color: #f59e0b;
}

.form-check-input:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.1);
}

.form-check-label {
    color: #374151;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
}

/* Illustration Container */
.illustration-container {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.illustration-img {
    max-width: 100%;
    height: auto;
    max-height: 70vh;
    object-fit: contain;
}

/* Responsive Design */
@media (max-width: 991.98px) {
    .container-fluid {
        padding: 0;
    }
    
    .auth-form-container {
        max-width: 100%;
        padding: 2rem 1.5rem;
    }
    
    .auth-title {
        font-size: 1.75rem;
    }
    
}

@media (max-width: 767.98px) {
    .auth-form-container {
        padding: 1.5rem 1rem;
    }

    /* Illustration Container */
.illustration-container {
    height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}
    
    .auth-title {
        font-size: 1.5rem;
    }
    
    .auth-subtitle {
        font-size: 0.875rem;
    }
    
    .form-control {
        padding: 0.625rem 0.875rem;
        font-size: 0.875rem;
    }
    
    .btn-get-started,
    .btn-signin,
    .btn-google {
        padding: 0.625rem 1.25rem;
        font-size: 0.875rem;
    }
}

@media (max-width: 575.98px) {
    .auth-title {
        font-size: 1.25rem;
    }
    
    .logo-text {
        font-size: 1.25rem;
    }
    
    .logo-com {
        font-size: 0.875rem;
    }
}

/* Animation for form elements */
.form-group {
    animation: fadeInUp 0.6s ease-out;
}

.form-group:nth-child(1) { animation-delay: 0.1s; }
.form-group:nth-child(2) { animation-delay: 0.2s; }
.form-group:nth-child(3) { animation-delay: 0.3s; }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Focus states for accessibility */


/* Loading state for buttons */
.btn-loading {
    position: relative;
    color: transparent !important;
}

.btn-loading::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    top: 50%;
    left: 50%;
    margin-left: -8px;
    margin-top: -8px;
    border: 2px solid transparent;
    border-top-color: #ffffff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Form validation styles */
.form-control.is-invalid {
    border-color: #dc3545;
}

.invalid-feedback {
    display: block;
    width: 100%;
    margin-top: 0.25rem;
    font-size: 0.875rem;
    color: #dc3545;
}

/* Notification styles */
@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOutRight {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

.notification-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.notification-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    margin-left: 1rem;
    color: inherit;
    opacity: 0.7;
}

.notification-close:hover {
    opacity: 1;
}