.login-body h1 {
    margin: 0;

    text-align: center;

    font-family: "Open Sans", sans-serif;
    font-size: 2.8rem;
    font-weight: 400;
    letter-spacing: .1px;
    color: #ffffff;
}

.login-body p {
    margin: 4px 0 28px 0;
    text-align: center;
    font-family: "Open Sans", sans-serif;
    font-size: 1.1rem;
    font-weight: 400;
    color: #ffffff;
    letter-spacing: 0.5px;
}

.login-body {
    margin: 0;
    min-height: 100vh;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    background: #00324d;
    font-family: "Open Sans", sans-serif;
}

.login-form {
    width: 340px;

    margin: 90px auto;
    padding: 32px;

    background: #ffffff;

    border: 1px solid #d9e1e8;
    border-radius: 8px;

    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.login-form h2 {
    margin: 0 0 24px 0;

    color: #2c3e50;
    font-size: 1.4rem;
    font-weight: 600;
    text-align: center;
}

.login-input {
    width: 100%;
    box-sizing: border-box;

    padding: 10px 12px;

    border: 1px solid #c7d1db;
    border-radius: 4px;

    background: #fff;

    font-family: inherit;
    font-size: 0.95rem;
}

.login-input:focus {
    outline: none;
    border-color: #6f8aa3;
}

.login-btn {
    width: 100%;

    margin-top: 16px;
    padding: 10px 14px;

    border: none;
    border-radius: 4px;

    background: #455a64;
    color: white;

    font-family: inherit;
    font-size: 0.95rem;
    font-weight: 600;

    cursor: pointer;

    transition: background 0.15s ease;
}

.login-btn:hover {
    background: #37474f;
}

.login-btn:active {
    background: #2f3e46;
}

.login-error {
    margin-bottom: 12px;
    color: #c62828;
    font-weight: 600;
    text-align: center;
}