/* LOGIN PAGE ONLY - ADVANCED DESIGN WITH OVAL INPUTS */

body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    background: radial-gradient(circle at top left, #17192b, #050509 60%);
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-wrapper {
    width: 100%;
    max-width: 420px;
    padding: 20px;
}

.login-card {
    background: rgba(13, 17, 23, 0.95);
    border-radius: 28px;
    padding: 28px 28px 22px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.06);
    color: #f8f9ff;
    position: relative;
    overflow: hidden;
}

.login-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(0, 177, 255, 0.25), transparent 55%);
    opacity: 0.9;
    pointer-events: none;
}

.login-card-header {
    position: relative;
    z-index: 1;
}

.login-subtitle {
    font-size: 0.85rem;
    color: rgba(248, 249, 255, 0.7);
}

.form-label {
    font-size: 0.85rem;
    color: rgba(248, 249, 255, 0.85);
}

/* Oval inputs */
.form-control {
    border-radius: 999px !important;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background-color: rgba(11, 14, 23, 0.8);
    color: #f8f9ff;
    padding: 0.7rem 1.1rem;
    font-size: 0.92rem;
}

.form-control:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(0, 164, 255, 0.6);
    border-color: rgba(0, 164, 255, 0.8);
}

/* Oval button */
.btn-login {
    border-radius: 999px;
    padding: 0.75rem 1rem;
    font-weight: 600;
    border: none;
    background: linear-gradient(135deg, #00b4ff, #00e1b3);
    color: #050509;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-size: 0.9rem;
}

.btn-login:hover {
    filter: brightness(1.08);
}

/* Human verification area */
.human-check {
    border-radius: 18px;
    padding: 0.75rem 0.9rem;
    background: rgba(8, 13, 22, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.85rem;
}

.human-question {
    font-weight: 500;
    margin-bottom: 0.3rem;
    color: #f4f8ff;
}

.human-input {
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(5, 10, 18, 0.9);
    color: #f8f9ff;
    padding: 0.45rem 0.9rem;
    width: 100%;
    font-size: 0.85rem;
}

.human-input:focus {
    outline: none;
    box-shadow: 0 0 0 1px rgba(0, 164, 255, 0.8);
}

/* Small "I'm human" checkbox section */
.human-checkbox-label {
    font-size: 0.82rem;
    color: rgba(248, 249, 255, 0.78);
}

/* Error alert within login */
.login-error {
    border-radius: 18px;
    padding: 0.55rem 0.75rem;
    font-size: 0.82rem;
}

/* Footer text */
.login-footer {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Logo / brand text */
.brand-title {
    font-size: 1.1rem;
    font-weight: 600;
}
