.popup {
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    top: 0;
    left: 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.8s ease 0s;
}
.popup.open {
    opacity: 1;
    visibility: visible;
}
.popup.open .popup__content {
    transform: translate(0px, -25%);
    opacity: 1;
}
.popup__body {
    min-height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px 10px;
}
.popup__content {
    background-color: #fff;
    color: #000;
    max-width: 800px;
    padding: 30px;
    position: relative;
    transition: all 0.8s ease 0s;
    opacity: 0;
    transform: translate(0px, -100%);
}
.popup__close {
    color: #000;
    position: absolute;
    right: 10px;
    top: 10px;
}
.popup__close .fa-times {
    font-size: 1.5rem;
}
.popup__title {
    font-size: 40px;
    margin: 0px 0px 1em 0px;
}
.popup__text {
    font-size: 1rem;
}
#captcha {
    margin: 20px 0;
    padding: 5px;
}
#captcha:hover {
    cursor: pointer;
}