#auth {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
#auth .inner {
    max-width: 550px;
    width: 100%;
}
#auth form {
    width: 100%;
    padding: 20px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    border: 1px solid transparent;
}
#auth form .forgot-password {
    display: flex;
    justify-content: end;
    margin-bottom: 20px;
}
#auth .form-title {
    margin-bottom: 20px;
}
#auth form .input-field {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;

}
#auth form .input-field:last-child {
    margin-bottom: 0;
}
#auth form .input-field label {
    text-transform: uppercase;
    font-size: 12px;
    font-weight: bold;
}
.input-field input {
    padding: 10px;
    border: 1px solid transparent;
}

#auth form .input-field button {
    padding: 10px;
    border: 1px solid transparent;
    cursor: pointer;
    text-transform: uppercase;
}
#auth .error-message {
    padding: 20px;
    border-radius: 10px;
    background: #ff7474;
    color: #fff;
    font-size: 13px;
}
#auth .registration-message {
    padding: 20px;
    background: #4faa75;
    border-radius: 10px;
    color: #fff;
    font-size: 13px;
}