.formular-asistenta {
    position: relative;
    margin-top: 20px;
    height: 400px;
    width: 700px;
    max-width: 90vw;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;

    /*  */
    border-style: solid;
    border-width: 1px;
    border-color: #7d7d7d;
    box-shadow: 0 2px 7px 0 rgb(43, 42, 20);
    border-radius: 20px;
}





.blur-overlay {
    z-index: -1;
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(181, 173, 173, 0.049);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    /* box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px; */
}

.inputBox {
    margin-top: 20px;
    position: relative;
    width: 320px;
}

.inputBox input {
    width: 100%;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: #1d2b3a;
    border-radius: 5px;
    outline: none;
    color: white;
    font-size: 1em;
    transition: 0.5s;
    text-wrap: nowrap;
}

.inputBox span {
    position: absolute;
    left: 0;
    padding: 10px;
    pointer-events: none;
    font-size: 1em;
    color: rgba(255, 255, 255, 0.25);
    text-transform: uppercase;
    text-wrap: nowrap;
    transition: 0.5s;
}


.inputBox input:focus~span,
.inputBox input:valid~span {
    transform: translateX(10px) translateY(-7px);
    left: 0;
    color: #3498db;
    font-size: 0.65em;
    padding: 0 10px;
    background-color: #1d2b3a;
    border-left: 1px solid #3498db;
    border-right: 1px solid #3498db;
    letter-spacing: 0.2em;
}

.inputBox input:focus,
.inputBox input:valid {
    border-color: #3498db;
}

.inputBox:nth-child(3) input:focus~span,
.inputBox:nth-child(3) input:valid~span {
    background-color: #3498db;
    color: #1d2b3a;
    border-radius: 2px;
}

.main-overlay {
    display: flex;
    justify-content: center;
    align-items: center;
}

.main-overlay img {
    height: 90%;
    margin: 0;
    opacity: 1;
}

.title {
    font-size: 50px;
    color: white;
}

.button {
    font-size: 20px;
}

.button:hover {
    background-color: transparent;
    border: 1px solid #f8c836;
    color: #f8c836;
}

.main {
    height: 90vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.copyright {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 5px;
    color: rgba(185, 185, 185, 0.452);
    font-weight: bold;
}

/* Modal Styles */
.modal-overlay {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
}

.modal-content {
    position: relative;
    background: linear-gradient(135deg, #1d2b3a 0%, #2c3e50 100%);
    border: 1px solid #3498db;
    border-radius: 15px;
    padding: 30px;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    font-weight: bold;
    color: #aaa;
    cursor: pointer;
    transition: color 0.3s;
}

.modal-close:hover {
    color: #3498db;
}

.modal-body {
    text-align: center;
}

.modal-text {
    color: white;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 15px;
    text-align: left;
}

.modal-text:first-child {
    font-weight: bold;
    margin-bottom: 20px;
}

.modal-text:last-of-type {
    margin-bottom: 25px;
}

.email-button {
    display: inline-block;
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    text-decoration: none;
    padding: 12px 25px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
}

.email-button:hover {
    background: linear-gradient(135deg, #2980b9, #3498db);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(52, 152, 219, 0.4);
}

.email-link {
    color: #3498db;
    text-decoration: underline;
    font-weight: bold;
    transition: color 0.3s ease;
}

.email-link:hover {
    color: #2980b9;
    text-decoration: none;
}

@media (max-width: 768px) {
    .formular-asistenta {
        height: 400px;
        width: 90vw;
    }

    .inputBox {
        width: 90%;
    }

    .inputBox input {
        padding: 15px;
    }

    .title {
        font-size: 40px;
    }

    .button {
        font-size: 15px;
    }

    .modal-content {
        margin: 20px;
        padding: 20px;
    }

    .modal-text {
        font-size: 14px;
    }

    .email-button {
        padding: 10px 20px;
        font-size: 14px;
    }
}