:root {
    color-scheme: light;
    font-family: "Roboto Slab", Georgia, serif;
    color: #172733;
    background: #eaf0f4;
}

* {
    box-sizing: border-box;
}

body {
    min-width: 320px;
    min-height: 100vh;
    min-height: 100dvh;
    margin: 0;
    background:
        radial-gradient(circle at 15% 10%, rgba(74, 153, 190, 0.19), transparent 30rem),
        linear-gradient(145deg, #edf3f6 0%, #dce8ef 100%);
}

.login-shell {
    display: grid;
    min-height: 100vh;
    min-height: 100dvh;
    place-items: center;
    padding: 1.25rem;
}

.login-card {
    width: min(100%, 430px);
    padding: clamp(1.5rem, 5vw, 2.4rem);
    border: 1px solid rgba(25, 72, 101, 0.15);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 22px 65px rgba(21, 55, 76, 0.16);
}

.brand-lockup {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.9rem;
}

.brand-copy {
    text-align: center;
}

.station-logo {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    object-fit: cover;
}

.eyebrow {
    margin: 0 0 0.2rem;
    color: #367698;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

h1 {
    margin: 0;
    color: #153f5d;
    font-size: 1.75rem;
    line-height: 1.15;
}

.login-error {
    margin-bottom: 1rem;
    padding: 0.8rem 0.9rem;
    border: 1px solid #e6aca5;
    border-radius: 10px;
    color: #7d2f29;
    background: #fff1ef;
    font-size: 0.86rem;
    line-height: 1.45;
}

.login-form {
    display: grid;
    gap: 0.55rem;
}

.login-form label {
    margin-top: 0.55rem;
    color: #294b61;
    font-size: 0.82rem;
    font-weight: 700;
}

.login-form input {
    width: 100%;
    min-height: 46px;
    padding: 0.7rem 0.8rem;
    border: 1px solid #b9cbd6;
    border-radius: 9px;
    color: #172733;
    background: #fff;
    font: inherit;
    font-size: 0.95rem;
    outline: none;
}

.login-form input:focus {
    border-color: #2e81ad;
    box-shadow: 0 0 0 3px rgba(46, 129, 173, 0.15);
}

.login-form button {
    min-height: 47px;
    margin-top: 1rem;
    border: 0;
    border-radius: 10px;
    color: #fff;
    background: linear-gradient(135deg, #174b6b, #247eaa);
    box-shadow: 0 8px 20px rgba(30, 104, 143, 0.22);
    font: inherit;
    font-weight: 750;
    cursor: pointer;
}

.login-form button:hover {
    filter: brightness(1.06);
}
