body{
    font-family: 'Roboto', sans-serif;
}
.form-wrap{
    padding: 0;
    margin: 0;
    list-style: none;
}
.error-message{
    background: #880000;
    color: #fff;
    padding: .55rem;
    border-radius: .25rem;
}
.errors-message{
    color: #880000;
    margin: 0 0 2px;
    padding: 0;
}
.loading{
    width: 50px;
    height: 50px;
    position: relative;
    -webkit-animation: rotate 2s linear  infinite ;
            animation: rotate 2s linear  infinite ;
}
.loading div{
    border-radius: 100%;
    width: 45%;
    height: 45%;
    background: #314b34;
    position: absolute;
}
.loading div:nth-child(1),
.loading div:nth-child(2){
    top: 0;
    left: 0;
}
.loading div:nth-child(3),
.loading div:nth-child(4){
    bottom: 0;
    left: 0;
}
.loading div:nth-child(2),
.loading div:nth-child(4){
    right: 0;
    left: auto;
}
.wrap-loading{
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(255,255,255,.8);
    display: flex;
    justify-content: center;
    align-items: center;
}
@-webkit-keyframes rotate {
    from {transform: rotate(0deg);}
    to {transform: rotate(360deg);}
}
@keyframes rotate {
    from {transform: rotate(0deg);}
    to {transform: rotate(360deg);}
}


