.div__popup-form {
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background-color: rgba(1, 1, 1, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    cursor: pointer;
}

.popup-form {
    background-color: white;
    overflow: auto;
    width: 90%;
    max-width: 500px;
    max-height: 90%;
    cursor: default;
    animation: animPopupForm 0.5s ease forwards;
}

.popup-form__btn-close {
    position: absolute;
    right: 2%;
    top: 3%;
    z-index: 1;
    font-size: 48px;
    cursor: pointer;
    color: rgb(172, 172, 172);
    transition: 0.3s ease;
    line-height: 1px;
}

.popup-form .div-section-form {
    margin: 0px auto;
    width: 100%;
}