/* ===========================
   LOGIN – SAMTALSHUSET
   =========================== */

.login-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #f6f4f2;
}

.login-brand {
    text-align: center;
    margin-bottom: 20px;
}

.login-brand img {
    max-width: 220px;
}

.login-wrapper {
    width: 100%;
    max-width: 420px;
    padding: 30px 36px 36px;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    text-align: center;
}

.login-wrapper h2 {
    margin-top: 0;
    margin-bottom: 10px;
    color: #7b1f1f;
}

.login-intro {
    font-size: 15px;
    color: #555;
    margin-bottom: 24px;
}

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

.login-field {
    text-align: left;
}

.login-field label {
    display: block;
    font-size: 13px;
    margin-bottom: 4px;
    color: #444;
}

.login-field input {
    width: 100%;
    padding: 10px 12px;
    border-radius: 6px;
    border: 1px solid #ccc;
    font-size: 15px;
}

.login-field input:focus {
    outline: none;
    border-color: #7b1f1f;
    box-shadow: 0 0 0 2px rgba(123,31,31,0.15);
}

.login-button {
    margin-top: 10px;
    padding: 12px;
    font-size: 15px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    background: #7b1f1f;
    color: #fff;
}

.login-button:hover {
    background: #641818;
}

.login-error {
    margin-bottom: 16px;
    padding: 10px;
    background: #fdecea;
    color: #b00020;
    border-radius: 6px;
    font-size: 14px;
}
