/**
 * ShyMind Auth - Glassmorphism Design
 */

:root {
    --auth-bg: #050b0b;
    --auth-card: rgba(255, 255, 255, 0.04);
    --auth-border: hsla(179, 20%, 100%, 0.12);
    --auth-gold: #eabe72;
    --auth-teal: #1e5756;
}

.shymind-auth-wrapper {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--auth-bg);
    font-family: 'Inter', sans-serif;
    padding: 20px;
}

.auth-card {
    background: var(--auth-card);
    backdrop-filter: blur(12px);
    border: 1px solid var(--auth-border);
    border-radius: 24px;
    width: 100%;
    max-width: 450px;
    padding: 40px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    text-align: center;
}

.auth-logo {
    font-size: 3rem;
    margin-bottom: 10px;
}

.auth-title {
    color: var(--auth-gold);
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 8px;
    text-transform: none;
}

.auth-subtitle {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    margin-bottom: 30px;
}

.auth-form-group {
    text-align: left;
    margin-bottom: 20px;
}

.auth-label {
    display: block;
    color: rgba(255, 255, 255, 0.8);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 8px;
    margin-left: 4px;
}

.auth-input {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--auth-border);
    border-radius: 12px;
    padding: 12px 16px;
    color: #fff;
    font-size: 15px;
    transition: all 0.3s ease;
    outline: none;
}

.auth-input:focus {
    border-color: var(--auth-gold);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 4px rgba(234, 190, 114, 0.1);
}

.auth-btn-primary {
    width: 100%;
    background: var(--auth-gold);
    color: #1a3a35;
    border: none;
    border-radius: 12px;
    padding: 14px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: 10px;
}

.auth-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(234, 190, 114, 0.2);
    filter: brightness(1.1);
}

.auth-footer {
    margin-top: 25px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

.auth-link {
    color: var(--auth-gold);
    text-decoration: none;
    font-weight: 600;
}

.auth-link:hover {
    text-decoration: underline;
}

.auth-divider {
    display: flex;
    align-items: center;
    margin: 25px 0;
    color: rgba(255, 255, 255, 0.2);
}

.auth-divider::before,
.auth-divider::after {
    content: "";
    flex: 1;
    height: 1px;
    background: var(--auth-border);
}

.auth-divider span {
    padding: 0 15px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.auth-social-btn {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--auth-border);
    border-radius: 12px;
    padding: 12px;
    color: #fff;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    transition: background 0.2s;
}

.auth-social-btn:hover {
    background: rgba(255, 255, 255, 0.08);
}

.auth-error {
    background: rgba(255, 71, 87, 0.1);
    border: 1px solid #ff4757;
    color: #ff4757;
    padding: 12px;
    border-radius: 12px;
    margin-bottom: 20px;
    font-size: 14px;
    display: none;
}
