/* ON-AIR login page styles */

.login-page {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 24px;
    background: #0b0f19;
}

.login-panel {
    width: 100%;
    max-width: 380px;
    background: #111827;
    border: 1px solid #1e293b;
    border-radius: 8px;
    padding: 36px 32px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.35);
}

.login-brand {
    font-size: 22px;
    font-weight: 800;
    color: #00d4aa;
    letter-spacing: 0;
    text-align: center;
    margin-bottom: 6px;
    user-select: none;
}

.login-panel h1 {
    font-size: 15px;
    font-weight: 500;
    color: #94a3b8;
    text-align: center;
    margin-bottom: 28px;
}

.login-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.login-form label {
    font-size: 12px;
    font-weight: 500;
    color: #64748b;
    margin-bottom: -10px;
    letter-spacing: 0;
}

.login-form input[type="text"],
.login-form input[type="password"] {
    width: 100%;
    padding: 11px 14px;
    font-size: 14px;
    color: #e2e8f0;
    background: #0f172a;
    border: 1px solid #334155;
    border-radius: 8px;
    outline: none;
    transition: border-color 0.15s, box-shadow 0.15s;
}

.login-form input[type="text"]:focus,
.login-form input[type="password"]:focus {
    border-color: #00d4aa;
    box-shadow: 0 0 0 3px rgba(0,212,170,0.12);
}

.login-error {
    padding: 10px 12px;
    font-size: 13px;
    color: #fecaca;
    background: rgba(239,68,68,0.12);
    border: 1px solid rgba(239,68,68,0.25);
    border-radius: 8px;
}

.login-submit {
    width: 100%;
    margin-top: 6px;
    padding: 12px;
    font-size: 14px;
    font-weight: 600;
    color: #0b0f19;
    background: #00d4aa;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    letter-spacing: 0.3px;
    transition: filter 0.15s, transform 0.05s;
}

.login-submit:hover {
    filter: brightness(1.08);
}

.login-submit:active {
    transform: translateY(1px);
}

/* Responsive */
@media (max-width: 480px) {
    .login-page {
        padding: 16px;
        align-items: flex-start;
        padding-top: 12vh;
    }
    .login-panel {
        padding: 28px 22px;
    border-radius: 8px;
    }
    .login-brand {
        font-size: 20px;
    }
    .login-panel h1 {
        font-size: 14px;
        margin-bottom: 22px;
    }
}
