/* auth.css - Authentication (Login/Register) Styles using Glassmorphism */

.auth-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 20px;
    background: linear-gradient(rgba(15, 23, 42, 0.7), rgba(15, 23, 42, 0.7)), 
                url('/images/auth_bg.png') center/cover no-repeat;
    position: relative;
}

.auth-glass-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(25px) saturate(180%);
    -webkit-backdrop-filter: blur(25px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 40px;
    padding: 3rem;
    width: 100%;
    max-width: 500px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.auth-title {
    font-family: 'Outfit', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 0.5rem;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.auth-subtitle {
    color: rgba(255, 255, 255, 0.5);
    font-size: 1rem;
}

.auth-input-group {
    position: relative;
    margin-bottom: 1.5rem;
}

.auth-input-group i {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.4);
    font-size: 1.2rem;
    transition: var(--transition-smooth);
}

.auth-input {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 18px;
    padding: 16px 20px 16px 55px;
    color: #fff;
    font-size: 1rem;
    transition: var(--transition-smooth);
}

.auth-input:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: #6366f1;
    outline: none;
    box-shadow: 0 0 20px rgba(99, 102, 241, 0.2);
}

.auth-input:focus + i {
    color: #6366f1;
}

.btn-auth-premium {
    width: 100%;
    background: var(--primary-gradient);
    border: none;
    border-radius: 18px;
    padding: 16px;
    color: #fff;
    font-weight: 700;
    font-size: 1.1rem;
    margin-top: 1rem;
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
    transition: var(--transition-smooth);
    cursor: pointer;
}

.btn-auth-premium:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(99, 102, 241, 0.4);
    opacity: 0.9;
}

.auth-footer-text {
    text-align: center;
    margin-top: 2rem;
    color: rgba(255, 255, 255, 0.6);
}

.auth-link {
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    margin-left: 5px;
    transition: var(--transition-smooth);
}

.auth-link:hover {
    color: #6366f1;
    text-decoration: underline;
}

.hover-white:hover {
    color: #fff !important;
}
