/* 
   PROFEET - Premium Auth Styles
   Glassmorphism + Neon accents
*/

.auth-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at 0% 0%, rgba(174, 255, 2, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 100% 100%, rgba(0, 136, 255, 0.05) 0%, transparent 50%),
                #050505;
    padding: 20px;
    position: relative;
    overflow: hidden;
}

.auth-page::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.5;
}

.auth-card {
    width: 100%;
    max-width: 450px;
    background: rgba(15, 17, 26, 0.6);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 28px;
    padding: 50px;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.6);
    position: relative;
    z-index: 10;
    animation: authCardIn 0.8s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

@keyframes authCardIn {
    0% { opacity: 0; transform: translateY(30px) scale(0.95); }
    100% { opacity: 1; transform: translateY(0) scale(1); }
}

.auth-header {
    text-align: center;
    margin-bottom: 40px;
}

.auth-header h1 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 10px;
    letter-spacing: -1px;
}

.auth-header p {
    color: #8e9196;
    font-size: 0.95rem;
}

/* Auth Toggle */
.auth-toggle {
    display: flex;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 5px;
    border-radius: 14px;
    margin-bottom: 30px;
}

.toggle-btn {
    flex: 1;
    padding: 10px;
    border: none;
    background: transparent;
    color: #8e9196;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    border-radius: 10px;
    transition: 0.3s;
}

.toggle-btn.active {
    background: var(--neon);
    color: #000;
}

/* Premium Form */
.auth-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.input-wrap {
    position: relative;
}

.input-wrap i {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: #4a4d52;
    font-size: 1.1rem;
    transition: 0.3s;
}

.auth-input {
    width: 100%;
    padding: 16px 20px 16px 50px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    color: #fff;
    font-size: 0.95rem;
    outline: none;
    transition: 0.3s;
}

.auth-input:focus {
    border-color: var(--neon);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 0 20px rgba(174, 255, 2, 0.1);
}

.auth-input:focus + i {
    color: var(--neon);
}

/* Social Buttons */
.social-auth {
    margin-top: 35px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.social-divider {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 5px;
    color: #4a4d52;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.social-divider span {
    flex: 1;
    height: 1px;
    background: rgba(255, 255, 255, 0.05);
}

.btn-social {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 14px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.02);
    color: #fff;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: 0.3s;
}

.btn-social:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.btn-social i {
    font-size: 1.2rem;
}

.auth-footer {
    text-align: center;
    margin-top: 30px;
    font-size: 0.9rem;
    color: #8e9196;
}

.auth-footer a {
    color: var(--neon);
    font-weight: 600;
}
