/* General Styles */
body {
    font-family: 'Arial', sans-serif;
    background-color: #f5f5f5;
    margin: 0;
    padding: 0;
}

.container {
    display: block; /* Mantienes block para expansión vertical */
    width: 100%; /* Asegura que ocupe el ancho completo */
    height: 100vh; /* Hace que el contenedor ocupe la altura total de la ventana */
    margin: 0;
    padding: 20px;
    background-image: url('images/CO-es-20240513-popsignuptwoweeks-perspective_alpha_website_large.jpg');
    background-size: cover; /* Cubre todo el contenedor con la imagen */
    background-position: center; /* Centra la imagen */
    background-repeat: no-repeat; /* Evita que la imagen se repita */
}

.form-container {
    background-color: white;
    padding: 40px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 900px; /* Añadir un ancho máximo para limitar el tamaño del cuadro */
    margin: 0 auto 30px auto; /* Centrar el cuadro horizontalmente y espacio debajo */
}

h1 {
    font-size: 36px;
    color: red;
    margin-bottom: 20px;
}

input[type="email"] {
    width: 250px;
    padding: 10px;
    border-radius: 25px;
    border: 1px solid #ccc;
    font-size: 16px;
    margin-right: 10px;
}

button {
    padding: 10px 20px;
    background-color: red;
    color: white;
    border: none;
    border-radius: 25px;
    font-size: 16px;
    cursor: pointer;
}

button:hover {
    background-color: #e60000;
}

/* Instructions Section */
.instructions {
    text-align: left;
    color: #333;
    font-size: 18px;
    margin-top: 40px;
}

.instructions h2 {
    font-size: 22px;
    color: #e60000;
}

.instructions ol {
    list-style: none;
    padding: 0;
}

.instructions li {
    font-size: 16px;
    margin-bottom: 10px;
}

.instructions li span {
    font-size: 22px;
    font-weight: bold;
    color: red;
    margin-right: 10px;
}

/* Email List Section */
.email-list {
    margin-top: 30px;
    width: 100%;
}

.email-list ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    width: 100%;
}

.email-list li {
    margin-bottom: 20px; /* Espacio entre cada correo */
    width: 100%; /* Que ocupe todo el ancho disponible */
}

.email-list a {
    color: #000;
    text-decoration: none;
    font-weight: bold; /* Negrita para el enlace */
    font-size: 16px;
}

.email-list a:hover {
    color: #0073e6; /* Cambia el color al pasar el ratón por encima */
    text-decoration: underline;
}

/* Email Content */
.email-content {
    margin-top: 10px;
    padding: 15px;
    border: 1px solid #ddd;
    background-color: #f9f9f9;
    border-radius: 5px;
    font-size: 14px;
    color: #333;
    clear: both;
    width: 100%;
    display: block;
    word-wrap: break-word; /* Asegura que el contenido largo se divida en varias líneas */
}

/* Email Valid Section */
.email-valid {
    margin-top: 20px;
    font-size: 16px;
}

.email-valid a {
    display: inline-block;
    padding: 10px;
    margin: 5px;
    border-radius: 25px;
    background-color: #e0f7fa;
    color: #00796b;
    text-decoration: none;
    font-size: 14px;
}

.email-valid a:hover {
    background-color: #b2ebf2;
}

/* Notes Section */
.note {
    margin-top: 40px;
    color: #666;
}

.note h3 {
    color: red;
    font-size: 22px;
}

.note p {
    font-size: 14px;
    margin-bottom: 5px;
}
