body {
    background-color: #282a30;
    font-family: 'Poppins', sans-serif;
}

.header {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 20px;
    background-color: #282a30;
    color: #fff;
}

.header-item {
    margin-right: 20px;
    text-decoration: none;
    color: #fff;
}

.header-item:first-child {
    margin-left: 20px;
}

.header-img {
    width: 100px;
    height: auto;
    margin-right: 20px;
}

#container {
    background-color: #b3b3b3;
    border-radius: 10px;
    padding: 20px;
    margin: 20px auto;
    max-width: 600px;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
}

#titulo {
    text-align: center;
}

label {
    display: block;
    margin-bottom: 5px;
    color: #333;
    font-weight: bold;
}

input[type="text"],
textarea {
    width: calc(100% - 12px);
    padding: 6px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

button {
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 4px;
    padding: 10px 20px;
    cursor: pointer;
}

button:hover {
    background-color: #0056b3;
}

#custom-alert {
    display: none;
    background-color: #007bff;
    color: #fff;
    padding: 10px;
    border-radius: 4px;
    margin-top: 10px;
    text-align: center;
}

.mi-contenedor {
    text-align: center;
    margin-top: 20px;
}

.texto {
    display: none;
    margin-top: 10px;
    padding: 20px;
    background-color: #282a30;
    /* Color de fondo gris */
    border-radius: 10px;
    /* Bordes redondeados */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    /* Sombra */
    color: white;
    text-align: center;
    /* Centra el texto */
    max-width: 800px;
    /* Limita la anchura máxima */
    margin-left: auto;
    /* Centra horizontalmente */
    margin-right: auto;
    /* Centra horizontalmente */
}