﻿/* Caja general del formulario */
.eenlace-form-borrar {
    background: #fff5f5; /* Fondo suave rojizo */
    border: 2px solid #e53935; /* Borde rojo fuerte */
    padding: 25px;
    border-radius: 10px;
    max-width: 520px;
    margin: 30px auto;
    font-family: "Segoe UI", Arial, sans-serif;
    box-shadow: 0 4px 12px rgba(229,57,53,0.2);
}

    /* Texto de instrucción */
    .eenlace-form-borrar .eenlace-instruccion {
        font-size: 15px;
        margin-bottom: 12px;
        color: #b71c1c;
        font-weight: 500;
    }

    /* Input de texto */
    .eenlace-form-borrar input[type="text"] {
        width: 100%;
        padding: 10px;
        border: 1px solid #ccc;
        border-radius: 6px;
        margin-bottom: 18px;
        font-size: 14px;
        transition: border-color 0.3s;
    }

        .eenlace-form-borrar input[type="text"]:focus {
            border-color: #e53935;
            outline: none;
            box-shadow: 0 0 5px rgba(229,57,53,0.4);
        }

    /* Checkbox */
    .eenlace-form-borrar .eenlace-checkbox {
        display: flex;
        align-items: flex-start;
        font-size: 13px;
        color: #444;
        margin-bottom: 20px;
    }

        .eenlace-form-borrar .eenlace-checkbox input {
            margin-right: 8px;
            margin-top: 2px;
        }

    /* Botón de acción */
    .eenlace-form-borrar .button-danger {
        background-color: #d32f2f;
        border: none;
        color: #fff;
        padding: 12px 22px;
        border-radius: 6px;
        cursor: pointer;
        font-weight: bold;
        font-size: 14px;
        transition: background-color 0.3s, transform 0.2s;
    }

        .eenlace-form-borrar .button-danger:hover {
            background-color: #b71c1c;
            transform: scale(1.05);
        }

        .eenlace-form-borrar .button-danger:active {
            background-color: #8e0000;
            transform: scale(0.98);
        }
