/* Estilos del modal */
.custom-modal {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
    position: relative;
}

.custom-image {
    max-width: 200px;
    border-radius: 10px;
    transition: max-width 0.3s;
}

/* Estilos del formulario */
.custom-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
}

.custom-form input,
.custom-form button {
    padding: 10px;
    font-size: 16px;
    border-radius: 5px;
}

.custom-form button {
    background-color: #194ab4;
    color: #fff;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
}

.custom-form button:hover {
    background-color: #123a8a;
}

.custom-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

/* Botón "X" para cerrar el modal */
.close-modal {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: transparent;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #000;
    font-weight: bold;
}

/* Responsividad para pantallas grandes */
@media (min-width: 1024px) {
    .custom-image {
        max-width: 900px;
    }
}

/* Responsividad para pantallas pequeñas */
@media (max-width: 768px) {
    .custom-modal {
        flex-direction: column;
        text-align: center;
    }

    .custom-image {
        max-width: 100%;
        margin-bottom: 20px;
    }
}
