body {
    background-color: #f8f9fc;
    min-height: 100vh;
    font-family: 'Outfit', sans-serif;
    color: #1a1a1a;
}

.auth-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 2rem;
    padding-top: 100px;
}

.auth-box {
    background: #ffffff;
    padding: 3.5rem;
    border-radius: 24px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.07);
    width: 100%;
    max-width: 480px; 
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.auth-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.auth-header h2 {
    font-size: 2.2rem;
    color: #0f0518;
    font-weight: 700;
    margin-bottom: 0.5rem;
    letter-spacing: -0.5px;
}

.auth-header p {
    color: #667;
    font-size: 1.1rem;
}

.input-group {
    margin-bottom: 1.5rem;
    text-align: left;
}

.label-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.6rem;
}

.input-group label {
    display: block;
    color: #0f0518;
    font-weight: 600;
    font-size: 0.95rem;
}

.forgot-pass {
    font-size: 0.9rem;
    color: #6C63FF;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.forgot-pass:hover {
    color: #4834d4;
    text-decoration: underline;
}

.input-group input {
    width: 100%;
    padding: 16px 20px;
    background: #ffffff;
    border: 2px solid #eaecf0;
    border-radius: 12px;
    font-size: 1rem;
    color: #0f0518;
    transition: all 0.3s ease;
}

.input-group input::placeholder {
    color: #98a2b3;
}

.input-group input:focus {
    outline: none;
    border-color: #6C63FF;
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(108, 99, 255, 0.1); 
}

.submit-btn {
    width: 100%;
    cursor: pointer;
    border: none;
    margin-top: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 18px;
    background: linear-gradient(135deg, #6C63FF 0%, #4834d4 100%);
    color: #ffffff;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(108, 99, 255, 0.25);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(108, 99, 255, 0.4);
}

.submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.message {
    margin-top: 1.5rem;
    text-align: center;
    font-size: 0.95rem;
    min-height: 1.5rem;
    padding: 0.75rem;
    border-radius: 8px;
}

.footer-text {
    text-align: center;
    margin-top: 2.5rem;
    font-size: 0.95rem;
    color: #667;
}

.footer-text a {
    color: #6C63FF;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

.footer-text a:hover {
    color: #4834d4;
    text-decoration: underline;
}

.success {
    background-color: #ecfdf5;
    color: #047857;
    border: 1px solid #d1fae5;
}

.error {
    background-color: #fef2f2;
    color: #b91c1c;
    border: 1px solid #fee2e2;
}

@media (max-width: 600px) {
    .auth-box {
        padding: 2rem;
        box-shadow: none;
        background: transparent;
        border: none;
    }
    
    .auth-container {
        padding: 1rem;
        padding-top: 80px;
        align-items: flex-start;
        background: #ffffff;
    }

    .auth-header h2 {
        font-size: 1.8rem;
    }
}