/* Estilo para el título */
.modal-content h3 {
    font-size: 1.8em;
    color: #f57c00; /* Naranja */
    text-align: center;
    margin-bottom: 20px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

/* Modal principal */
.modal {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
    font-family: 'Arial', sans-serif;
}

.modal-content {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    width: 350px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.25);
}

/* Botones */
.validation-button {
    background-color: #f57c00; /* Naranja */
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 1em;
    cursor: pointer;
    transition: all 0.3s ease;
}

.validation-button:hover {
    background-color: #e67300;
    box-shadow: 0 0 10px rgba(245, 124, 0, 0.7);
}

.cancel-button {
    background-color: #dc3545; /* Rojo */
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 1em;
    cursor: pointer;
    margin-top: 10px;
    transition: all 0.3s ease;
}

.cancel-button:hover {
    background-color: #c82333;
    box-shadow: 0 0 10px rgba(220, 53, 69, 0.7);
}

/* Campo de entrada */
.input-field {
    width: 90%;
    padding: 10px;
    margin-top: 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
    font-size: 1em;
    transition: all 0.3s ease;
}

.input-field:focus {
    border-color: #f57c00; /* Naranja */
    box-shadow: 0 0 10px rgba(245, 124, 0, 0.5);
    outline: none;
}

/* Validación visual */
.input-success {
    border-color: #f57c00; /* Naranja */
    box-shadow: 0 0 15px 5px rgba(245, 124, 0, 0.7);
}

.input-error {
    border-color: #dc3545; /* Rojo */
    box-shadow: 0 0 15px 5px rgba(220, 53, 69, 0.7);
}

/* Mensaje de resultado */
.resultado {
    margin-top: 20px;
    font-size: 1.2em;
    font-weight: bold;
}
