#waitResponse{
    transition: 0.5s;
}
.success-box,
.error-box {
    font-size: 14px;
    margin-top: 5px;
    transition: .5s;
}
.success-box {
    color:#155724;
    text-align: center;
}
.error-box {
    color:#c72636;
}
.preparing,
.generating {
    color: #e65100;
    background-color: #ffe0b2;
    border-color: #ffd59b;
    padding: 7px;
    margin-top: 10px;
    border: 1px solid transparent;
    border-radius: 4px;
    font-size: 14px;
    transition: 0.5s;
    display: flex;
    align-items: center;
}
.spinner {
    width: 20px;
    height: 20px;
    border: 3px solid rgba(0, 0, 0, 0.1);
    border-left-color: #e65100;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-left: auto;
}
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
.checkmark__circle {
    stroke-dasharray: 166;
    stroke-dashoffset: 166;
    stroke-width: 2;
    stroke-miterlimit: 10;
    stroke: green;
    fill: none;
    animation: .6s cubic-bezier(.65, 0, .45, 1) forwards stroke;
}
.checkmark {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: block;
    stroke-width: 3;
    stroke: green;
    stroke-miterlimit: 10;
    margin: 0 auto;
    margin-bottom: 10px;
    box-shadow: inset 0 0 0 #7ac142;
    animation: .4s ease-in-out .4s forwards fill, .3s ease-in-out .9s both scale;
}
.checkmark__check {
    transform-origin: 50% 50%;
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    animation: .3s cubic-bezier(.65, 0, .45, 1) .8s forwards stroke;
}
@keyframes stroke {
    100% {
        stroke-dashoffset: 0;
    }
}
@keyframes scale {
    0%, 100% {
        transform: none;
    }
    50% {
        transform: scale3d(1.1, 1.1, 1);
    }
}
@keyframes fill {
    100% {
        box-shadow: inset 0 0 0 30px #fff;
    }
}
@media (max-width: 768px) {
    form{
        width: unset;
    }
}