<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@font-face {
    font-family: "Montserrat";
    src: local("Montserrat Bold"), local("Montserrat-Bold"),
        url("../fonts/Montserrat-Bold.woff2") format("woff2");
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Montserrat";
    src: local("Montserrat Regular"), local("Montserrat-Regular"),
        url("../fonts/Montserrat-Regular.woff2") format("woff2");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

*, ::after, ::before {
    padding: 0;
    margin: 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    font-family: "Montserrat", sans-serif;
}

html, body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
    height: 100%;
}

form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
    width: 90%;
    min-width: 300px;
    max-width: 400px;
    padding: 50px 20px;
    text-align: center;
    border: 3px solid #5576d9;
    border-radius: 20px;
    background-color: #fff;
}

.form__image {
    width: 100px;
}

.form__heading {
    font-size: 20px;
}

.form__instructions {
    font-size: 16px;
}

.form__instructions span {
    color: #5576d9;
}

.form__input-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    width: 100%;
    max-width: 280px;
}

.form__input-label {
    font-size: 0;
}

.form__input {
    width: 100%;
    padding: 5px 10px;
    font-size: 16px;
    line-height: 26px;
    border: 1px solid #ccc;
    border-radius: 5px;
    text-align: center;
}

.form__button {
    width: 100%;
    max-width: 280px;
    padding: 16px 20px;
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
    color: #fff;
    background-color: #5576d9;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.form__button:hover {
    background-color: #4b6cb7;
}</pre></body></html>