form{
    position: relative;
}

.error-block{
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    transform: translate(-50%, -50%);
}
.error-block p{
    margin: 0;
    text-align: center;
}
form .errortext{
    color: white !important;
}
.call__form{
    position: relative;
}
.success-block{
    position: absolute;
    top: -10%;
    left: 50%;
    width: 100%;
    transform: translate(-50%, -50%);
}
.success-block .notetext{
    color: white !important;
}

.red .errortext{
    color: red !important;
}
.red .notetext{
    color: green !important;
}

@media (max-width: 480px) {
    .errortext, .notetext{
        font-size: 10px !important;
    }
}