.auth-body {
    background: linear-gradient(135deg, #f5e6ff 0%, #fce4ec 100%);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.auth-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(155, 89, 182, 0.15);
    padding: 3rem;
    width: 100%;
    max-width: 450px;
}

.auth-logo-text {
    font-size: 2.5rem;
    font-weight: 900;
    text-align: center;
    background: linear-gradient(135deg, #9B59B6, #EC407A);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
}

.auth-subtitle {
    text-align: center;
    color: #6c757d;
    margin-bottom: 2rem;
    font-weight: 500;
}

.form-floating > label {
    color: #6c757d;
    font-weight: 500;
    padding-left: 1.5rem;
}

.form-floating > .form-control {
    border-radius: 16px;
    background: rgba(255,255,255,0.9);
    border: 1px solid rgba(155, 89, 182, 0.2);
}

.form-floating > .form-control:focus {
    background: white;
    box-shadow: 0 0 0 0.25rem rgba(155, 89, 182, 0.15);
    border-color: #9B59B6;
}

.auth-btn {
    width: 100%;
    padding: 14px;
    border-radius: 16px;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-top: 1rem;
    background: linear-gradient(135deg, #9B59B6, #EC407A);
    border: none;
    box-shadow: 0 4px 15px rgba(155, 89, 182, 0.4);
}

.auth-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(155, 89, 182, 0.5);
}

.auth-links {
    margin-top: 1.5rem;
    text-align: center;
}

.auth-links a {
    color: #9B59B6;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.auth-links a:hover {
    color: #EC407A;
}

@media (max-width: 576px) {
    .auth-card {
        padding: 2rem;
        border-radius: 20px;
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0;
        border-bottom: none;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    .auth-main {
        padding-top: 0 !important;
        align-items: flex-end !important;
    }
}
