/* Estilos generales */
body {
    font-family: Arial, sans-serif;
    background-color: #aaaaaa;
    margin: 0;
    padding: 0;
}

i {
    color: rgb(255, 69, 0);
}

/* Estilos para el contenedor del formulario */
.container {
    width: 100%;
    max-width: 400px;
    padding: 40px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    margin: 100px auto;
}

/* Estilos para los campos de entrada */
input[type=email], input[type=text] {
    width: 100%;
    padding: 12px 20px;
    margin: 8px 0;
    display: inline-block;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

/* Estilo para el botón de envío */
button[type=submit] {
    width: 100%;
    background-color: #FF4500;
    color: white;
    padding: 14px 20px;
    margin: 20px 0 10px;
    border: none;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

button[type=submit]:hover {
    background-color: black;
    color: white;
    border:1px solid #FF4500;
}   

label {
    display: block;
    margin-bottom: 8px;
    color: #333;
}

h1 {
    text-align: center;
    color: #333;
    margin-bottom: 30px;
}

p {
    text-align: center;
    margin-top: 20px;
}

p a {
    color: #007bff;
    text-decoration: none;
}

p a:hover {
    text-decoration: underline;
}

/* Estilos para los mensajes de error */
.messages {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.messages li {
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 4px;
    text-align: center;
}

.messages li.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Media Queries para hacer el diseño responsive */
@media (max-width: 600px) {
    .container {
        padding: 20px;
        max-width: 90%; /* Ajustar el ancho máximo del contenedor */
    }

    input[type=email] {
        padding: 8px 16px;
    }

    button[type=submit] {
        padding: 10px 18px;
    }

    h1 {
        font-size: 1.5em; /* Ajustar el tamaño de fuente del título */
    }

    label {
        font-size: 0.9em; /* Ajustar el tamaño de fuente de las etiquetas */
    }

    p {
        font-size: 0.8em; /* Ajustar el tamaño de fuente de los párrafos */
    }
}