/* form-auth */

.form-auth-wrapper {
    height: 75vh;
    justify-content: center;
}
.form-auth {
    justify-content: center;
}
.form-auth h2 {
    color: var(--am-grey-dark);
    font-size: 22px;
    font-weight: normal;
    margin: 26px;
    text-align: center;
}
.fa-input-wrapper {
    margin: 0 0 18px;
}
.form-auth input[type=text],
.form-auth input[type=password] {
    border: 2px solid var(--am-grey);
    border-radius: 6px;
    box-sizing: border-box;
    font-family: 'Tahoma';
    font-size: 16px;
    height: 40px;
    padding: 0 10px;
    width: 300px;
}
.form-auth button[type=submit] {
    background: var(--am-green);
    border: none;
    border-radius: 6px;
    color: #fff;
    cursor: pointer;
    font-family: 'Tahoma';
    font-size: 16px;
    height: 40px;
    text-align: center;
    width: 300px;
}
.form-auth button[type=submit]:hover {
    opacity: 0.8;
}

/* form-auth end */