/* ------- Formulario ------------ */

.data {
    margin-bottom     : 16px;
    padding           : 4px 12px;
    -webkit-box-flex  : 1;
    -webkit-flex      : 1;
    -ms-flex          : 1;
    flex              : 1;
    border-style      : solid;
    border-width      : 1px;
    border-color      : rgba(83, 98, 124, 0.3);
    border-radius     : 8px;
    -webkit-transition: border-color 200ms ease;
    transition        : border-color 200ms ease;
    display           : flex;
    flex-direction    : column;
    text-align        : left;
}

.input-formulario{
    height          : 25px;
    margin-bottom   : 0px;
    padding         : 0px;
    border          : 1px none #000;
    background-color: transparent;
    color           : #27224f;
    font-size       : 12px;
    outline         : 0;
}

.modal .button {
    width: -webkit-fill-available;
}

.modal .modal-label {
    display      : block;
    margin-bottom: 0px;
    color        : var(--primary-color-alt);
    font-size    : 14px;
    font-weight  : 400;
}

.modal h4 {
    text-align   : left;
    margin-bottom: 8px;
    color        : var(--primary-color-alt);
}

.subtitulo-formulario {
    text-align    : left;
    line-height   : 24px;
    font-size     : 1rem;
    padding-bottom: 12px;
}

.modal {
    /* para que tenga las medidas de la ventana */
    position: fixed;

    width           : 100%;
    height          : 100%;
    background-color: rgba(0,0,0,.66);
    opacity         : 0;
    transition      : opacity 0.25;
    transform       : translate3d(0px, 0px, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
    pointer-events  : none;
    
}

input::placeholder {
    color    : #b8b6c5;
    font-size: 12px;
    /* letter-spacing: .9px; */
    font-family: var(--font-family);
  }

.data:hover {
    border: 1px solid var(--primary-color);
}

.modal.active {
    opacity       : 1;
    pointer-events: initial;
    z-index       : 1000;
}

/* En este caso se uso absolute, pero se puede utilizar flexbox */
.content {
    position        : absolute;
    text-align      : center;
    top             : 50%;
    left            : 50%;
    transform       : translate(-50%, -50%);
    width           : 90%;
    max-width       : 467px;
    background-color: white;
    border-radius   : 0.5rem;
    padding         : 24px 21px 11px;
}

.content h1,
.content p{
    margin-bottom: 1rem;

}

.container-form {
    background-color: #fff;
    width           : 100%;
    max-width       : 467px;
    padding         : 24px 21px 11px;
    box-shadow      : 0 0 8px rgba(0, 0, 0, 0.1);
    border-radius   : 8px;
}

.container-form .close-btn {
    position     : absolute;
    right        : 20px;
    top          : 15px;
    font-size    : 24px;
    cursor       : pointer;
    border       : 2px solid #2a3b47;
    padding      : 10px;
    border-radius: 50%;
    width        : 50px;
    height       : 50px;

}

.container-form .close-btn:hover {
    color: var(--primary-color);
} 

select {
    border : 0;
    outline: 0;
}

.select-place {
    color    : #b8b6c5;
    font-size: 12px;
}

.option-mes {
    color    : var(--color-body);
    font-size: 16px;
}


@media(max-width:425px) {
    .container-form {
        padding: 24px 12px 11px;
    }

    p.subtitulo-formulario {
        text-align: center;
    }
}