.login-signup-container08 {
    margin-top: 80px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: linear-gradient(135deg, #EBF8FF 0%, #F7FAFC 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.auth-container08 {
    width: 100%;
    max-width: 550px;
    padding: 20px;
}

.auth-card08 {
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(49, 130, 206, 0.1);
    padding: 40px;
    position: relative;
    overflow: hidden;
}

.auth-card08::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3182CE, #4299E1);
}

.auth-header08 {
    text-align: center;
    margin-bottom: 30px;
}

.auth-title08 {
    font-size: 2rem;
    font-weight: 700;
    color: #1A202C;
    margin-bottom: 8px;
}

.auth-subtitle08 {
    color: #4A5568;
    font-size: 0.95rem;
}

.toggle-container08 {
    margin-bottom: 30px;
}

.toggle-switch08 {
    position: relative;
    background: #EBF8FF;
    border-radius: 12px;
    padding: 4px;
    display: flex;
    height: 48px;
}

.toggle-option08 {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
    color: #4A5568;
}

.toggle-option08.active08 {
    color: white;
}

.toggle-slider08 {
    position: absolute;
    top: 4px;
    left: 4px;
    width: calc(50% - 4px);
    height: 40px;
    background: linear-gradient(135deg, #3182CE, #4299E1);
    border-radius: 8px;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(49, 130, 206, 0.3);
}

.toggle-slider08.signup08 {
    transform: translateX(100%);
}

.auth-form08 {
    display: none;
    animation: fadeIn 0.4s ease-in-out;
}

.auth-form08.active08 {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-group08 {
    margin-bottom: 20px;
}

.form-label08 {
    display: block;
    margin-bottom: 6px;
    color: #1A202C;
    font-weight: 500;
    font-size: 0.9rem;
}

.form-input08 {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #E2E8F0;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
    color: #1A202C;
}

.form-input08:focus {
    outline: none;
    border-color: #3182CE;
    box-shadow: 0 0 0 3px rgba(49, 130, 206, 0.1);
    transform: translateY(-1px);
}

.form-options08 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    font-size: 0.85rem;
}

.checkbox-container08 {
    display: flex;
    align-items: center;
    cursor: pointer;
    color: #4A5568;
}

.checkbox-input08 {
    display: none;
}

.checkbox-checkmark08 {
    width: 18px;
    height: 18px;
    border: 2px solid #E2E8F0;
    border-radius: 4px;
    margin-right: 8px;
    position: relative;
    transition: all 0.3s ease;
}

.checkbox-input08:checked + .checkbox-checkmark08 {
    background: #3182CE;
    border-color: #3182CE;
}

.checkbox-input08:checked + .checkbox-checkmark08::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    width: 6px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
}

.forgot-link08,
.terms-link08 {
    color: #3182CE;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.forgot-link08:hover,
.terms-link08:hover {
    color: #2C5282;
}

.auth-button08 {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #3182CE, #4299E1);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(49, 130, 206, 0.3);
}

.auth-button08:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(49, 130, 206, 0.4);
}

.auth-button08:active {
    transform: translateY(0);
}

.auth-footer08 {
    text-align: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #E2E8F0;
}

.footer-text08 {
    color: #4A5568;
    font-size: 0.8rem;
}

/* Responsive Design */
@media (max-width: 480px) {
    .auth-container08 {
        padding: 15px;
    }
    
    .auth-card08 {
        padding: 30px 25px;
    }
    
    .auth-title08 {
        font-size: 1.75rem;
    }
    
    .form-input08 {
        padding: 12px 14px;
    }
}

/* Error and Success Messages */
.message08 {
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.message08.error08 {
    background: #FED7D7;
    color: #C53030;
    border: 1px solid #FEB2B2;
}

.message08.success08 {
    background: #C6F6D5;
    color: #2F855A;
    border: 1px solid #9AE6B4;
}

/* Loading State */
.auth-button08.loading08 {
    position: relative;
    color: transparent;
}

.auth-button08.loading08::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    top: 50%;
    left: 50%;
    margin-left: -10px;
    margin-top: -10px;
    border: 2px solid transparent;
    border-top: 2px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

