.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    filter: blur(5px);
    transform: scale(0);
    z-index: 9997;
    background-color: rgba(0,0,0,0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 1s ease-in-out;
}

.modal-overlay-close {
    position: fixed;
    z-index: 9998;
    width: 100%;
    height: 100%;
    background: transparent;
}

.modal-container {
    position: relative;
    z-index: 9999;
    width: 90%;
    max-width: 450px;
    display: flex;
    flex-direction: column;
    padding: 40px;
    border-radius: 10px;
    background-color: rgba(255,255,255,1);
    box-shadow: 2px 2px 5px black;
    gap: 20px;
}

.modal-container h3 {
    color: var(--black);
    padding-bottom: 10px;
    /* border-bottom: 1px solid rgb(173, 173, 173); */
    font-weight: 400;
}

.modal-form {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.modal-form-element {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0px;
}

.modal-form label {
    color: var(--primary-color);
    font-weight: 400;
}

.modal-form input, .modal-form textarea {
    padding: 5px 10px;
    border: none;
    border-radius: 0;
    border-bottom: 1px solid rgb(175, 175, 175);
    /* border-radius: 5px; */
}

.modal-form input:focus, .modal-form textarea:focus {
    border-bottom: 1px solid var(--primary-color);
    outline: none;
}

.modal-form textarea {
    resize: vertical;
    min-height: 50px;
}

.modal-form .btn-send-modal {
    position: relative;
    cursor: pointer;
    background: var(--primary-color);
    border: 1px solid var(--primary-color);
    color: var(--white-color);
    margin: 15px 0;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 1rem;
    transition: all .5s ease-in-out;
}

.modal-form .btn-send-modal:hover {
    background: transparent;
    color: var(--primary-color);
}

.modal-form input, .modal-form .btn-send-modal {
    height: 35px;
}

.btn-close-modal {
    position: absolute;
    top: 20px;
    right: 20px;
    cursor: pointer;
    background: transparent;
    border: none;
    font-size: 1.3rem;
    color: var(--black-color);
    transition: all .5s ease-in-out;
}

.btn-close-modal:hover {
    color: var(--primary-color);
    transform: scale(1.1);
}

.show-modal {
    opacity: 1;
    filter: blur(0);
    transform: scale(1);
}


input:-internal-autofill-selected {
    background-color: transparent !important;
}