.modal__wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
}
.modal {
    background-color: #fff;
    padding: 36rem;
    border-radius: 12rem;
    width: 321rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.modal__title {
    font-size: 20rem;
    text-transform: uppercase;
    text-align: center;
    color: #00A3D4;
}
.modal .btn {
    margin-top: 30rem;
}