/*ESTILOS PARA MODAL DEL FORM*/
.modal-asesoramiento {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999;
    
}


.modal-asesoramiento.hidden {
    display: none;
}

.modal-content {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    max-width: 500px;
    width: 90%;
    position: relative;
    animation: scaleUp 0.35s cubic-bezier(0.165, 0.840, 0.440, 1.000) forwards;
}

@keyframes scaleUp {
   0% {
     transform: translateY(1000px);
     opacity:0;
   }
   100% {
     transform: translateY(0px);
     opacity:1;
   }
 }


.close-modal {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 1.5rem;
    cursor: pointer;
}

/* - - - */
.modal-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    .form-title {
        text-align: center;
        font-weight: 600;
        margin: .5rem;
        font-size: 1.1rem;
        ;
    }

    .input-info-container {
        display: flex;
        flex-direction: column;
        margin: .5rem;
    }

    .input-name-last-name {
        display: flex;
        flex-direction: row;
        gap: .5rem;
        margin: .5rem;
    }

    .btn-asesoramiento-form {
        color: white;
        width: 100%;
        background-color: #002a50;
        border: none;
        border-radius: 50px;
        cursor: pointer;
        font-size: 1rem;
        font-weight: 600;
        padding: .7rem;
        margin-top: .5rem;
    }

    input {
        width: 100%;
        height: 2rem;
        margin: .2rem;
        font-weight: 600;
    }

    select {
        width: 100%;
        height: 2rem;
        margin: .2rem;
        background-color: white;
        border: 1px solid grey;
        font-weight: 500;
    }
}