.form-success{
    display: none;
    background: var(--green);
    border-radius: 4px;
    color: #fff;
    text-align: center;
    padding: 10px;
    margin-bottom: 20px;
}

.form-errors{
    display: none;
    border: 2px solid red;
    border-radius: 4px;
    color: red;
    text-align: center;
    padding: 10px;
    margin-bottom: 20px;
}

.form-warning{
    display: none;
    border: 2px solid #fc8403;
    border-radius: 4px;
    color: #000;
    text-align: center;
    padding: 10px;
    margin-bottom: 20px;
    font-weight: bold;
}

.form-error{
    margin-bottom: 0px;
}

.form-error:not(:first-child){
    margin-bottom: 2px;
}

.form-success.displayed, .form-errors.displayed, .form-warning.displayed{
    display: block;
    max-width: 500px;
    margin: auto;
}


.form-input-group{
    margin-bottom: 30px;
    position: relative;
}

.form-input-label{
    margin-bottom: 5px;
}

.loading{
    display: none;
    color: #000;
    font-size: 18px;
    font-weight: 400;
    text-align: center;
}

ul.errorlist{
    list-style: none;
}

ul.errorlist > li{
    font-weight: bold;
    color: red;
}


ul.errorlist > li li{
    font-weight: normal;
}
