* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    min-height: 100%;
}

body {
    font-family:
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Roboto,
        Arial,
        sans-serif;

    background: #f5f6f8;
    color: #222;
}

button,
input,
textarea,
select {
    font: inherit;
}

button {
    cursor: pointer;
}

.hidden {
    display: none !important;
}

.primary-button {
    border: none;

    background: #c50000;

    color: white;

    padding: 12px 17px;

    border-radius: 10px;

    font-weight: 700;
}

.primary-button:hover {
    background: #a90000;
}

.secondary-button {
    border: 1px solid #ddd;

    background: white;

    color: #444;

    padding: 12px 17px;

    border-radius: 10px;

    font-weight: 700;
}


/* LOGIN */

.login-screen {
    width: 100%;
    min-height: 100vh;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 20px;

    background:
        linear-gradient(
            145deg,
            #720000,
            #bb0000,
            #e10000
        );
}

.login-card {
    width: 100%;
    max-width: 400px;

    background: white;

    padding: 35px 25px;

    border-radius: 24px;

    box-shadow:
        0 20px 60px
        rgba(0, 0, 0, 0.25);
}

.login-logo {
    width: 70px;
    height: 70px;

    margin: 0 auto 20px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #c50000;

    color: white;

    border-radius: 20px;

    font-size: calc(26px * var(--text-scale, 1));
    font-weight: 800;
}

.login-card h1 {
    text-align: center;

    margin-bottom: 7px;
}

.login-card > p {
    text-align: center;

    color: #777;

    margin-bottom: 27px;

    font-size: calc(14px * var(--text-scale, 1));
}

.form-field {
    margin-bottom: 17px;
}

.form-field label {
    display: block;

    margin-bottom: 7px;

    font-weight: 600;

    font-size: calc(13px * var(--text-scale, 1));
}

.form-field input {
    width: 100%;

    border: 1px solid #ddd;

    padding: 14px;

    border-radius: 11px;

    outline: none;
}

.form-field input:focus {
    border-color: #c50000;
}

.login-submit {
    width: 100%;
}

.form-message {
    min-height: 20px;

    margin-top: 14px;

    text-align: center;

    color: #c50000;

    font-size: calc(13px * var(--text-scale, 1));
}