@font-face {
    font-family: 'hn-bold';
    src: url("../fonts/Graphik-Semibold.woff2");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'hn-regular';
    src: url("../fonts/Graphik-Regular.woff2");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

* {
    box-sizing: border-box;
    margin: 0;
    color: black;
}

header {
    height: 98px;
    padding: 37px 100px;
    max-width: 1234px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}

.logo {
    display: block;
    width: 180px;
    height: 25px;
    background: url('/images/logo.svg') no-repeat center;
    background-size: contain;
}

.sello {
    /* width: 219px;
    height: 81px; */
    display: block;
    position: absolute;
    right: 20px;
    top: 75px;
}

footer {
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'hn-bold', Arial;
    font-size: 12px;
    letter-spacing: 0.36px;
    line-height: 20px;
}

main {
    background: url("/images/bg.png") no-repeat center;
    min-height: calc(100vh - 148px);
}

h1 {
    font-family: 'hn-bold', Arial;
    font-size: 40px;
    line-height: 45px;
    margin-bottom: 66px;

}

.subtitle {
    font-family: 'hn-regular', Arial;
    font-size: 25px;
    line-height: 30px;
}

.main-content {
    max-width: 1234px;
    margin: 0 auto;
    padding: 75px 20px;
    position: relative;
}

.form-content {
    max-width: 892px;
    margin: auto;
    width: 100%;
    background: white;
    padding-top: 35px;
    padding-bottom: 35px;
    padding-left: 20px;
    padding-right: 20px;
}

.form {
    max-width: 733px;
    width: 100%;
    border: 1px solid #f2f2f2;
    margin: auto;

}

form {
    padding: 20px 80px;

}

label {
    font-family: 'hn-regular', Arial;
    letter-spacing: 1px;
    font-size: 11px;
    line-height: 20px;
}

input {
    width: 100%;
    border: none;
    border-bottom: 1px solid #4a4a4a;
    padding: 5px 0px;
    font-size: 14px;
}

input::placeholder {
    font-family: 'hn-regular', Arial;
    font-size: 14px;
    line-height: 26px;
    opacity: 0.3;
    color: #000;
}

input:focus {
    box-shadow: none;
    outline: none;
}

button {
    width: 230px;
    height: 45px;
    background-color: #000;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'hn-bold', Arial;
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: white;
    margin-top: 30px;
    border: 1px solid #000;
    cursor: pointer;
    transition: all 0.3s ease;
}

.required {
    font-family: 'hn-regular', Arial;
    font-size: 12px;
    line-height: 16px;
    max-width: 733px;
    width: 100%;
    margin: auto;
    margin-top: 15px;
}

.validator {
    height: 87px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.validator p {
    letter-spacing: 0.36px;
    font-size: 14px;
    font-family: 'hn-regular', Arial;
    line-height: 34px;
}

.green {
    background-color: #f3f9f5;
}

.green p,
.green p strong {

    color: #8ac9a3;
}

.red {
    background-color: #fdecec;
}

.red p,
.red p strong {
    color: #f27f7f;
}

strong {
    font-family: 'hn-bold', Arial;
}

.red .icono {
    background: url('/images/false.svg') no-repeat center;
    display: block;
    width: 22px;
    height: 22px;
}

.green .icono {
    background: url('/images/true.svg') no-repeat center;
    display: block;
    width: 22px;
    height: 22px;
}

@media(min-width: 811px) {
    button:hover {
        background-color: white;
        color: black;
    }
}

@media(max-width: 810px) {
    header {
        height: 71px;
        padding: 28px 15px;
    }

    .logo {
        width: 125px;
        height: 17px;
    }

    footer {
        height: 40px;
    }

    main {
        min-height: calc(100vh - 111px);
    }

    .main-content {
        padding-top: 30px;
        padding-bottom: 30px;
    }

    h1 {
        font-size: 30px;
        line-height: 30px;
        margin-bottom: 20px;

    }

    .subtitle {
        font-size: 20px;
        line-height: 25px;
    }

    .sello {
        width: 148px;
        height: 55px;
        position: initial;
        margin-bottom: 40px;
    }

    .form-content {
        padding: 20px;
    }

    form {
        padding-left: 20px;
        padding-right: 20px;
    }
}

@media(max-width: 560px) {
    button {
        width: 100%;
    }
}