/* ============================= */
/* Mitglieder-Login – Kartenstil */
/* ============================= */

.login-page{
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 18px 60px;
}

.login-grid{
    display: grid;
    grid-template-columns: minmax(260px, 520px);
    justify-content: center;
    gap: 18px;
}

/* Meldungen */
.login-msg{
    background: #ffffff;
    border: 1px solid rgba(0,0,0,0.10);
    border-radius: 14px;
    padding: 12px 14px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    font-weight: 800;
    line-height: 1.5;
    position: relative;
}

.login-msg--error{
    border-color: rgba(211,47,47,0.25);
    border-left: 6px solid rgba(211,47,47,0.75);
}

.login-msg--success{
    border-color: rgba(46,125,50,0.25);
    border-left: 6px solid rgba(46,125,50,0.75);
}

.login-msg__close{
    position: absolute;
    top: 8px;
    right: 10px;
    border: none;
    background: transparent;
    font-size: 20px;
    font-weight: 900;
    cursor: pointer;
    line-height: 1;
    color: #0b2a4a;
}
.login-msg__close:hover{ color:#c9a14a; }

/* Card */
.login-card{
    background: #ffffff;
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 14px;
    padding: 18px 16px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.10);
}

.login-card h3{
    margin: 0 0 18px;
    font-size: 1.1rem;
    color: #0b2a4a;
    text-align: center;
    position: relative;
    padding-bottom: 6px;
}

.login-card h3::after{
    content: "";
    display: block;
    width: 52px;
    height: 2px;
    background: #c9a14a;
    margin: 8px auto 0;
    border-radius: 2px;
}

/* Form */
.login-form{ display:grid; gap:12px; }
.login-field{ display:grid; gap:6px; }

.login-field span{
    font-weight: 800;
    color: #0b2a4a;
    font-size: 0.95rem;
}

.login-field input{
    width: 100%;
    padding: 11px 12px;
    border-radius: 10px;
    border: 1px solid rgba(0,0,0,0.14);
    outline: none;
    font-size: 1rem;
    transition: border-color 120ms ease, box-shadow 120ms ease;
}

.login-field input:focus{
    border-color: rgba(11, 42, 74, 0.45);
    box-shadow: 0 0 0 4px rgba(11, 42, 74, 0.10);
}

/* Buttons */
.login-btn{
    width: 100%;
    padding: 11px 14px;
    border-radius: 10px;
    background: #0b2a4a;
    color: #fff;
    font-weight: 900;
    border: none;
    cursor: pointer;
    box-shadow: 0 8px 18px rgba(0,0,0,0.12);
    transition: transform 120ms ease, background 120ms ease;
}

.login-btn:hover,
.login-btn:focus{
    background: #163b5e;
    transform: translateY(-1px);
}

.login-btn--secondary{
    background: #ffffff;
    color: #0b2a4a;
    border: 1px solid rgba(0,0,0,0.14);
    box-shadow: 0 8px 18px rgba(0,0,0,0.08);
}

.login-btn--secondary:hover,
.login-btn--secondary:focus{
    background: #f6f7f9;
}

.login-sep{
    display: grid;
    place-items: center;
    margin: 6px 0 2px;
    position: relative;
}
.login-sep::before{
    content: "";
    width: 100%;
    height: 1px;
    background: rgba(0,0,0,0.10);
    position: absolute;
    left: 0;
    top: 50%;
}
.login-sep span{
    position: relative;
    background: #fff;
    padding: 0 10px;
    color: #666;
    font-weight: 800;
    font-size: 0.9rem;
}

.login-hint{
    margin: 2px 0 0;
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
    text-align: center;
    font-weight: 600;
}
