* {
    margin: 0px;
    padding: 0px;
    border: 0;
}

body {
    background-color: #F4F4F4;
    background-image: url(../images/background.svg);
    background-repeat: no-repeat;
    background-size: contain;
}

.content {
    height: 100vh;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /* position: absolute; */
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    color: #514A48;
    font-family: 'Roboto';
    font-size: 14px;
    line-height: 19px;
}

.logo {
    max-width: 400px;
    max-height: 100px;
    margin-bottom: 65px;
}

.login-box {
    min-width: 430px;
    padding: 40px 45px;
    background-color: #FFFFFF;
    box-shadow: 0px 3px 8px #9F9F9F4D;
    -webkit-border-radius: 38px;
    -moz-border-radius: 38px;
    border-radius: 38px;
}

.title {
    font-size: 28px;
    line-height: 30px;
}

.subtitle {
    color: #A8A6A5;
    font-size: 16px;
    line-height: 34px;
}

.input-container {

}

.input-container label {
    line-height: 24px;
}

.input-container input  {
    width: 100%;
    height: 40px;
    padding: 0 15px;
    border: 1px solid #D9DADB;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
}

.input-container textarea
{
    width: 100%;
    height: 100px;
    padding: 15px;
    border: 1px solid #D9DADB;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
}

.textual-link {
    color: #85BEC8;
}

.separator {
    width: 100%;
    height: 1px;
    margin: 20px 0;
    background-color: #D9DADB;
}

.checkbox-container {
    display: block;
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    cursor: pointer;
    color: #85BEC8;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.checkbox-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkbox-checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 16px;
    width: 16px;
    border: 1px solid #85BEC8;
}

.checkbox-checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.checkbox-container input:checked~.checkbox-checkmark:after {
    display: block;
}

.checkbox-container .checkbox-checkmark:after {
    left: 5px;
    /* top: 0px; */
    width: 5px;
    height: 10px;
    border: solid #85BEC8;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.submit-button,
.white-button,
.yellow-button {
    height: 40px;
    padding: 0 20px;
    background-color: #9FD5DF;
    --webkit-appearance: none;
    border: none;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
    color: #FFFFFF;
    font-family: 'Rubik';
    text-transform: uppercase;
    font-size: 14px;
    line-height: 17px;
    cursor: pointer;
}

.white-button,
.yellow-button {
    height: 38px;
    color: #514A48;
    line-height: 38px;
    background-color: #FFFFFF;
    box-shadow: 0px 3px 6px #00000029;
}

.yellow-button {
    color: #FFFFFF;
    font-weight: 500;
    background-color: #F1C40F;
    box-shadow: 0px 3px 6px #F1C40F70;
}

.big-buttons-container {
    display: flex;
    width: 90vw;
    justify-content: space-around;
}

.big-button {
    width: 35vw;
    max-width: 380px;
    height: 35vw;
    max-height: 380px;
    position: relative;
    /* background-image: url(../images/sfumatura.svg); */
    background-position: bottom;
    background-repeat: no-repeat;
    background-size: contain;
    /* cursor: pointer; */
}

.big-button .img {
    width: 100%;
    position: absolute;
    bottom: 0;
}

.big-button-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 0;
    bottom: 30px;
    right: 0;
    text-align: center;
}

.button-title {
    margin-bottom: 10px;
    font-size: 20px;
    line-height: 24px;
    font-weight: 600;
}

.big-button-disabled-content {
    width: 100%;
    height: 100%;
    position: absolute;
    display: flex;
    flex-direction: column;
    text-align: center;
}

.button-disabled-title {
    margin: 20px 0 15px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 19px;
    line-height: 23px;
    font-weight: 600;
}

.locked {
    width: 40px;
    margin-right: 10px;
    position: relative;
}

.button-disabled-image {
    height: 127px;
    margin: 0 auto;
}

.button-disabled-text {
    margin: 5px 0;
    color: #FFFFFF;
    font-weight: 500;
}

.logout {
    display: flex;
    position: absolute;
    top: 75px;
    right: 35px;
    color: #554E4C;
    font-family: 'Rubik';
    font-weight: 500;
    text-decoration: none;
}

.logout img {
    margin-left: 5px;
}

.big-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    font-size: 16px;
    line-height: 22px;
    text-align: center;
}

.box-icon {
    width: 85%;
    max-height: 250px;
}

.box-subtitle {
    margin-bottom: 25px;
}

h2 {
    color: #554E4C;
    font-family: 'Rubik';
    font-size: 32px;
    line-height: 54px;
    font-weight: 500;
}

h2 img {
    height: 25px;
    margin-right: 10px;
}