@font-face {
    font-family: Work Sans;
    src: url(WorkSans-VariableFont_wght.ttf);
}

* {
    margin: 0;
    padding: 0;
}

.background-image {
    margin: 0px;
    padding: 0px;
    position: absolute;
    height: 100%;
    width: 100%;
    background: url("../images/background.png");
    background-repeat: no-repeat;
    background-size: cover;
}

.background-image.desktop {
    display: none;
}

.container {
    margin: 0px;
    padding: 0px;
    padding: env(safe-area-inset-top) env(safe-area-inset-right) env(safe-area-inset-bottom) env(safe-area-inset-left);
    position: absolute;
    height: 100%;
    width: 100%;
    /* background: #1f1f1f4e; */
    background: rgba(31, 31, 31, 0.90);
    backdrop-filter: blur(2px);

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.container-form {
    max-width: 80%;
}

h1 {
    color: #FFF;
    font-size: 25px;
    font-family: Work Sans;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 38px;
}

label {
    width: 100%;
    color: #FFF;
    font-size: 13px;
    font-family: Work Sans;
    text-transform: uppercase;
    margin-bottom: 8.745px;
}

.field {
    color-scheme: dark;

    width: calc(100% - 20px);
    margin-bottom: 44.85px;
    background: transparent;
    border-radius: 6.915px;
    border: 0.692px solid #CFCFCF;
    border-style: solid;
    height: 42px;

    
    color: #FFF;
    font-size: 13px;
    font-family: Work Sans;
    line-height: 20.054px;
    opacity: 1;
    
    padding-left: 16px;
    padding-right: 4px;
}

#eyes {
    width: 100%;
}

#eyes * {
    background-color: #1F1F1F;
}

.field::placeholder, .placeholder {
    color: #FFF;
    font-size: 13px;
    font-family: Work Sans;
    line-height: 20.054px;
    opacity: 0.4 !important;
}

.button-submit {
    width: 100%;
    padding: 6.992px 26.22px;
    border-radius: 61.18px;
    border-style: none;
    background: #FFF;

    color: #1F1F1F;
    text-align: center;
    font-size: 13.984px;
    font-family: Work Sans;
    line-height: 33.212px;
}

/* tablet */
@media (min-width:600px) {
    h1 {
        font-size: 45px;
    }
}

/* Desktop */
@media (min-width: 1025px) {
    .background-image.desktop {
        display: block;
        position: relative;
        border-radius: 40px 0px;
        width: 50%;
        scale: 92%;
    }

    .container {
        flex-direction: row;
        background: #1f1f1f;
        backdrop-filter: none;
    }

    .container-form {
        width: 50%;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .container-form * {
        width: 421px;
        max-width: 421px !important;
        align-self: center;
    }

    .field {
        width: 401px;
    }
}

@media (max-height: 539px) {
    .field {
        margin-bottom: 12px;
    }

    h1 {
        margin-bottom: 12px;
    }
}

@media (max-height: 399px) {
    .container-form {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
    }

    h1, form {
        width: 50%;
    }
}