/* auth.css - Glassmorphic login page */
.auth-page-container {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - 120px);
    position: relative;
    overflow: hidden;
    padding: 20px;
}

.auth-glow-orb {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    filter: blur(100px);
    z-index: 0;
    pointer-events: none;
    opacity: 0.15;
}

.auth-orb-1 {
    top: 10%;
    left: 20%;
    background: var(--gold-primary);
}

.auth-orb-2 {
    bottom: 10%;
    right: 20%;
    background: #3b82f6;
}

.auth-card {
    width: 400px;
    max-width: 100%;
    border: 1px solid var(--border-color);
    background: var(--bg-card);
    border-radius: 16px;
    padding: 30px;
    box-shadow: var(--shadow-card);
    z-index: 1;
    position: relative;
    backdrop-filter: blur(20px);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.auth-header {
    text-align: center;
}

.auth-icon {
    font-size: 32px;
    margin-bottom: 10px;
}

.auth-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
}

.auth-subtitle {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 4px;
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.auth-input-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.auth-label {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 0.5px;
}

.auth-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.auth-input-icon {
    position: absolute;
    left: 12px;
    color: var(--text-muted);
    width: 16px;
    height: 16px;
    pointer-events: none;
}

.auth-input {
    width: 100%;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 10px 12px 10px 38px;
    color: var(--text-primary);
    font-size: 13px;
    transition: all 0.2s ease;
}

.auth-input:focus {
    outline: none;
    border-color: var(--gold-primary);
    box-shadow: 0 0 0 2px rgba(212, 168, 67, 0.15);
}

.auth-submit-btn {
    background: var(--gold-primary);
    border: 1px solid var(--gold-primary);
    color: #000;
    border-radius: 8px;
    padding: 12px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 10px;
}

.auth-submit-btn:hover {
    opacity: 0.9;
}

.auth-toggle-link {
    text-align: center;
    font-size: 12px;
    color: var(--text-secondary);
    margin-top: 10px;
}

.auth-toggle-link span {
    color: var(--gold-primary);
    cursor: pointer;
    font-weight: 600;
    text-decoration: underline;
}

.auth-toggle-link span:hover {
    opacity: 0.8;
}
