        .mensaje-error {
            color: red;
            font-family: 'MiFuente', sans-serif;
            font-size: 20px;
            margin-top: 5px;
            display: none;
        }
        .boton-deshabilitado {
            background-color: grey;
            cursor: not-allowed;
        }


        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Poppins', sans-serif;
        }
    
        /* Estilo general */
        body {
            display: flex;
            justify-content: center;
            align-items: center;
            height: 100vh;
            padding: 20px; /* Espacio alrededor en pantallas pequeñas */
            background-image: url('../img/breadcrumb-bg.jpg');
            background-size: cover; /* Ajusta la imagen para que cubra todo el fondo */
            background-position: center; /* Centra la imagen */
            background-repeat: no-repeat; /* Evita que la imagen se repita */
        }
    
        /* Estilo del contenedor principal */
        form {
            background-color: #ffffff;
            border-radius: 8px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            text-align: center;
            overflow: hidden;
            width: 100%;
            max-width: 400px; /* Ajusta el ancho máximo del formulario */
        }
    
        /* Parte superior del formulario con fondo negro */
        .header {
            background-color: #000000;
            padding: 20px;
            display: flex;
            justify-content: center;
            align-items: center;
        }
    
        .header img {
            max-width: 200px; /* Ajusta el tamaño de la imagen según sea necesario */
            max-height: 150px;
        }
    
        /* Estilo del contenido del formulario */
        .form-content {
            padding: 20px;
        }
    
        /* Estilo del título */
        h2 {
            font-size: 24px;
            margin: 0 0 20px;
            color: #333;
        }
    
        /* Estilo de las etiquetas */
        label {
            display: block;
            font-size: 16px;
            color: #555;
            margin-bottom: 10px;
            text-align: left;
        }
    
        /* Estilo del campo de entrada */
        input[type="text"] {
            width: 100%;
            padding: 10px;
            margin-bottom: 20px;
            border: 1px solid #ddd;
            border-radius: 4px;
            font-size: 16px;
            transition: border-color 0.3s;
        }
    
        input[type="text"]:focus {
            border-color: #007bff;
            outline: none;
        }
    
        /* Estilo del mensaje de error */
        .mensaje-error {
            color: #ff4d4d;
            font-size: 14px;
            display: block;
            margin-top: -15px;
            margin-bottom: 10px;
            text-align: left;
        }
    
        /* Estilo del botón */
        input[type="submit"] {
            background-color: #007bff;
            color: #ffffff;
            border: none;
            border-radius: 4px;
            padding: 10px 20px;
            font-size: 18px;
            cursor: pointer;
            transition: background-color 0.3s;
        }
    
        input[type="submit"]:hover {
            background-color: #0056b3;
        }
    
        input[type="submit"]:disabled {
            background-color: #cccccc;
            cursor: not-allowed;
        }
    
        /* Media queries para dispositivos móviles */
        @media (max-width: 768px) {
            .header img {
                max-width: 120px;
                max-height: 80px;
            }
    
            .form-content {
                padding: 15px;
            }
    
            h2 {
                font-size: 22px;
            }
    
            input[type="text"] {
                font-size: 14px;
            }
    
            input[type="submit"] {
                font-size: 16px;
                padding: 8px 16px;
            }
        }
    
        @media (max-width: 480px) {
            h2 {
                font-size: 20px;
            }
    
            .header {
                padding: 15px;
            }
    
            .header img {
                max-width: 100px;
                max-height: 60px;
            }
    
            .form-content {
                padding: 10px;
            }
    
            input[type="text"] {
                font-size: 14px;
            }
    
            input[type="submit"] {
                font-size: 14px;
                padding: 8px 14px;
            }
        }