.modal {
    display: none;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.32);
    z-index: 20;
    justify-content: center;
    align-items: center;
}

.modal__form {
    position: relative;
    width: 400px;
    height: 558px;
    background-color: white;
    padding: 24px;
    overflow: visible;
}

.modal__closeButton {
    position: absolute;
    top: 24px;
    right: 24px;
}

.modal__closeButton:hover {
    opacity: 0.7;
}

.modal__closeButton:active {
    opacity: 0.5;
}

.modal__formText {
    margin-top: 8px;
    margin-bottom: 24px;
}

.modal__inputs {
    gap: 24px;
    margin-bottom: 24px;
    overflow: visible;
}

.modal__sendButton {
    width: 100%;
}

.modal__show {
    display: flex !important;
}
