.popup-box{
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0%;
    left: 0%;
    z-index: 10000000;
    padding: 10px;
    display: none;
    min-width: 375px;
}
.popup-title{
    font-style: normal;
font-weight: 600;
font-size: 24px;
line-height: 29px;
text-align: center;
color: #151515;
margin-bottom: 12px;
}
.popup-box::before{
    content: "";
    display: block;
    position: absolute;
    background: rgba(0, 0, 0, 0.237);
    width: 100vw;
    height: 100vh;
    z-index: 0;
}
.popup{
    max-width: 660px;
    background: #fff;
    z-index: 1;
    padding: 0 40px 0 40px;
    box-shadow: 0px 50px 50px rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    /* position: relative; */
    /* height: 100%; */
    max-height: 100%;
    overflow-y: auto;
}
.popup main{
    /* height: 100%; */
    /* overflow-y: auto; */
    margin: 40px 0;
    position: relative;
}
.popup-box form input, .popup-box form input::placeholder {
    color: #A8A8A8 !important; 
}
.popup-box form input{
    border-color: #A8A8A8 !important;
}
.popup-confirmation{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.popup-confirmation img{
    margin-bottom: 30px;
}
.close-popup{
    position: absolute;
    top: -10px;
    right: -10px;
    width: 16px;
    height: 16px;
    cursor: pointer;
    filter: brightness(0.3);
}
@media(max-width:576px){
    .popup-title{
        font-weight: 500;
font-size: 20px;
line-height: 24px;
    }
}