.card-body-14{
    width: 80%;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: "Titillium Web", sans-serif;
    margin-top: 50px;
    margin-bottom: 50px;
}


.card-body-14 form{
    width: 90%;
    display: flex;
    flex-direction: column;
    border: 2px solid rgb(185, 185, 185);
    padding: 20px 2.5%;
    border-radius: 20px;
}

.card-body-14 form h3{
    text-align: center;
}
.card-body-14 span{
    color: red;
}

#img_op{
    height: 90PX;
    width: 200px;
    display: block; 
    margin-left: auto;
    margin-right: auto; 
}

.card-body-14 p{
    margin: 0;
}

.form-group-14{
    display: flex;
    flex-direction: column;
    margin: 15px 0;
}

.form-group-14 input{
    padding: 10px 12px;
    font-size: 14px;
    border: 2px solid #ddd;
    border-radius: 8px;
    outline: none;
    transition: all 0.3s ease;
}

.form-group-14 input:focus{
    box-shadow: 0 0 6px rgba(74, 144, 226, 0.4);
}

.form-group-14 input.error-input:focus{
    box-shadow: 0 0 6px rgba(226, 74, 74, 0.7);
}

.form-group-14 input::placeholder{
    color: #aaa;
    font-style: italic;
}

.card-body-14 form button{
    width: 150px;
    cursor: pointer;
    height: auto;
    margin: auto;
    padding: 10px 0;
    border: 0;
    border-radius: 8px;
    transition: 0.4s;
    font-size: 20px;
    background-color: #ffc107;

    &&:hover{
        background-color: #d39e00;
    }
}

.modal-form-14 {
    display: none; 
    position: fixed; 
    z-index: 1000; 
    left: 0; 
    top: 0; 
    width: 100%; 
    height: 100%; 
    background-color: rgba(0,0,0,0.5); 
}

/* Contenido del modal */
.modal-form-14 .modal-content {
    background: white;
    margin: 15% auto; 
    padding: 20px;
    border-radius: 10px;
    width: 400px;
    text-align: center;
    position: relative;
    font-family: "Titillium Web", sans-serif;
}

/* Botón cerrar */
.modal-form-14 .close {
    background: red;
    color: white;
    border: none;
    padding: 8px 15px;
    cursor: pointer;
    border-radius: 5px;
    width: 30%;
    margin-left: auto;
}

