* {
    margin: 0;
    padding: 0;
    list-style: none;
    box-sizing: border-box;
}

@font-face {
    font-family: 'League Spartan';
    src: url('../fonts/LeagueSpartan.woff2') format('woff2');
}

html,
body {
    line-height: 1.5;
    color: rgb(27, 27, 27);
    font-family: 'Helvetica', arial, sans-serif;
    font-size: 16px;
    word-break: break-word;
    word-wrap: break-word;
}

.email-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.email-container h1 {
    margin-bottom: 1.5rem;
    font-family: "League Spartan", arial, helvetica, sans-serif;
    font-size: 1.5rem;

}

.email-container form {
    width: 100%;
}

.form-item {
    margin-bottom: 24px;
    width: 100%;
}

.form-item>div {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
}

.form-item>div>label {
    display: block;
    font-family: "McKinsey Sans", "Helvetica Neue", Calibri, Corbel, Helvetica, Roboto, Droid, sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #000;
    text-align: left;
}

.form-item>div>input {
    min-height: 62px;
    padding: 2px 16px;
    outline: none;
    max-width: 100%;
    min-width: 100%;
    font-size: 1.5rem;
}

.form-item>div>p {
    display: none;
    font-family: "McKinsey Sans", "Helvetica Neue", Calibri, Corbel, Helvetica, Roboto, Droid, sans-serif;
    font-size: 14px;
    font-weight: 300;
    color: rgb(213, 31, 49);
}

.form-item>div>input:hover {
    border: 1px solid rgb(30, 50, 230) !important;
}

.submit-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 2rem 0;
    flex-direction: column;
}

.submit {
    min-width: 200px;
    min-height: 56px;
    padding: 8px 24px;
    cursor: pointer;
    color: #fff;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0);
    background-color: #00396f;
}

.form-msg-input {
    margin-bottom: 2rem;
}

.submit:hover {
    background-color: #035eb3;
    background-color: #2e59bf;
}

.submit-container p {
    margin: 2rem 0;
    color: rgb(89, 89, 89);
    font-family: Helvetica, arial, sans-serif;
    font-size: 14px;
}

@media screen and (max-width: 768px) {
    .message-container {
        width: 100%;
        max-width: 100%;
        margin: 2rem auto 0;
    }

    .message-container h1,
    .message-container h2 {
        font-size: 1rem;
    }

    .message-container h2 {
        margin-bottom: 1rem;
    }

    .email-container form {
        padding: 0 1rem;
    }

    .form-item>div>input {
        min-height: 40px;
    }

    .form-item {
        margin-bottom: 1rem;
    }

    .submit-container {
        margin: 1rem 0;
    }

    .submit-container p {
        margin: 1rem 0 0;
    }

    .submit {
        min-width: 120px;
        min-height: 40px;
    }
}