body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background: linear-gradient(135deg, rgb(39, 49, 61) 0%, rgb(74, 81, 93) 100%);
    color: #333;
}

.contenido {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
    padding: 30px;
    max-width: 400px;
    width: 100%;
    text-align: center;
}

h1 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: #333;
}

h2 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #666;
}

form {
    display: flex;
    flex-direction: column;
}

label {
    text-align: left;
    font-weight: bold;
    margin-bottom: 5px;
    color: #444;
}

input {
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 14px;
    width: 100%;
    box-sizing: border-box;
}

button {
    padding: 12px;
    font-size: 16px;
    background-color: #2575fc;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
}

button:hover {
    background-color: rgb(23, 34, 152);
}

.message {
    margin-top: 15px;
    font-size: 14px;
}

.message.error {
    color: red;
}

.message.success {
    color: green;
}

.form-group {
    margin-bottom: 15px; /* Espaciado entre campos */
    text-align: left; /* Alinea todo el contenido del grupo a la izquierda */
}

.form-group label {
    display: block; /* Coloca la etiqueta encima del campo */
    font-weight: bold; /* Opcional: Hace el texto más destacado */
}

.form-group input {
    width: 100%; /* Asegura que los campos ocupen todo el espacio disponible */
    padding: 8px; /* Espaciado interno del campo */
    box-sizing: border-box; /* Incluye el padding en el ancho total */
}

button {
    margin-top: 15px;
    padding: 10px 20px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

button:hover {
    background-color: #0056b3;
}

.message {
    margin-top: 15px;
    padding: 10px;
    border-radius: 5px;
}

.message.success {
    background-color: #d4edda;
    color: #155724;
}

.message.error {
    background-color: #f8d7da;
    color: #721c24;
}
