    /* Reset de estilos */
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    /* Estilo general */
    body {
        font-family: Arial, sans-serif;
        background-color: #f4f4f9;
        color: #333;
        display: flex;
        justify-content: center;
        align-items: center;
        min-height: 100vh;
        padding: 20px;
    }

    /* Contenedor principal */
    .container {
        background: #fff;
        padding: 30px;
        border-radius: 10px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        width: 100%;
        max-width: 800px;
    }

    /* Encabezado */
    h1 {
        text-align: center;
        font-size: 1.8rem;
        color: #222;
        margin-bottom: 20px;
    }

    /* Etiquetas */
    label {
        font-size: 1rem;
        color: #555;
        display: block;
        margin-bottom: 10px;
    }

    /* Campo de entrada */
    input[type="email"] {
        width: 100%;
        padding: 10px;
        font-size: 1rem;
        border: 1px solid #ddd;
        border-radius: 5px;
        margin-bottom: 20px;
    }

    input[type="email"]:focus {
        border-color: #007bff;
        outline: none;
        box-shadow: 0 0 5px rgba(0, 123, 255, 0.3);
    }

    /* Botón */
    button {
        width: 100%;
        padding: 12px;
        font-size: 1rem;
        color: #fff;
        background-color: #007bff;
        border: none;
        border-radius: 5px;
        cursor: pointer;
        transition: background-color 0.3s;
    }

    button:hover {
        background-color: #0056b3;
    }

    /* Diseño responsivo */
    @media (max-width: 768px) {
        h1 {
            font-size: 1.5rem;
        }

        button {
            font-size: 0.9rem;
        }
    }