/* ---- Conta/login.css ---- */

.auth-card {
    background: rgba(15, 16, 22, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    padding: 3rem;
    position: relative;
    overflow: hidden;
}

.auth-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #00bcd4, #6366f1, transparent);
    opacity: 0.8;
}

.auth-glow {
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 188, 212, 0.15) 0%, transparent 60%);
    top: -150px;
    right: -150px;
    pointer-events: none;
    border-radius: 50%;
}

.auth-title {
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #fff;
    margin-bottom: 0.5rem;
}

.auth-subtitle {
    color: #a1a1aa;
    font-size: 0.9rem;
    margin-bottom: 2.5rem;
}

.auth-input-wrap {
    position: relative;
    margin-bottom: 1.5rem;
}

.auth-input-wrap .auth-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    color: #71717a;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.5rem;
}

.auth-input {
    width: 100%;
    background: #0a0b10;
    border: 1px solid #27272a;
    border-radius: 12px;
    color: #e4e4e7;
    padding: 0.85rem 1rem 0.85rem 2.8rem;
    font-size: 0.95rem;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.auth-input:focus {
    border-color: #00bcd4;
    box-shadow: 0 0 0 3px rgba(0, 188, 212, 0.15);
    outline: none;
}

.auth-icon {
    position: absolute;
    left: 14px;
    top: 36px;
    color: #52525b;
    font-size: 20px;
    pointer-events: none;
    transition: color 0.2s;
}

.auth-input:focus+.auth-icon,
.auth-input-wrap:focus-within .auth-icon {
    color: #00bcd4;
}

.auth-btn-primary {
    width: 100%;
    padding: 0.85rem;
    border-radius: 12px;
    background: linear-gradient(135deg, #00bcd4 0%, #0288d1 100%);
    color: #fff;
    border: none;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.02em;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 14px rgba(0, 188, 212, 0.3);
}

.auth-btn-primary:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 188, 212, 0.4);
}

.auth-btn-primary:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    box-shadow: none;
}

.auth-link {
    color: #00bcd4;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s;
}

.auth-link:hover {
    color: #6366f1;
}

.pwd-toggle {
    position: absolute;
    right: 14px;
    top: 36px;
    background: transparent;
    border: none;
    color: #71717a;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 0;
    transition: color 0.2s;
}

.pwd-toggle:hover {
    color: #e4e4e7;
}

/* Add custom animations for Auth left pane details */
.bg-gradient-login {
    background: radial-gradient(circle at 0% 0%, rgba(99, 102, 241, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 100% 100%, rgba(0, 188, 212, 0.1) 0%, transparent 50%);
    background-color: #0a0b10;
}