.modal-container{
    width: 100vw;
    top: 0;
    left: 0;
    z-index: 6000;
    position: fixed;
    height: 100vh;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(4px);
    display: none;
}
.modal-content{
    width: 500px;
    background-color: #093863;
    border-radius:16px;
    padding: 40px;
}

.modal-show{
    display: flex !important;
}
.modal-close button{
    border: none;
    background-color: transparent;
    float: right;
    cursor: pointer;
}
.modal-close button svg{
    width: 30px;
}

.modal-content form p{
    color: white;
}
.modal-content form input, .modal-content form textarea, .modal-content form select{
    width: -webkit-fill-available;
    border: 1px solid#F26649;
    background-color: #093863;
    border-radius: 8px;
    padding: 10px;
    color: white;
    margin: 10px 0;
}
.modal-content form select option{
    color: white;
}
.modal-content-get, .modal-content-hidden{
    display: none;
}

@media screen and (max-width:768px){
    .modal-content {
        width: 60%; 
        padding: 30px;
    }
}
