html {
    height: 100%;
    margin: 0;
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: url("imagenes/exo_fondo_new.jpg");
	background-repeat: no-repeat;
	background-size: cover;
}

.contenedor {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
	width: 100%;
}

.formulario {
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: center;
	scale: 1.5;
}

.logo {
    display: flex;
    justify-content: center; /* Centra el logo horizontalmente */
    align-items: center; /* Centra el logo verticalmente */
    margin-bottom: 20px; /* Añade un espacio debajo del logo */
}

.error {
    width: 90%;
    padding: 10px;
    border-radius: 5px;
    border: 2px solid crimson;
	background-color: LightSalmon;
	margin-bottom: 10px;
	color: FireBrick;
}

.success {
    width: 90%;
    padding: 10px;
    border-radius: 5px;
    border: 2px solid #2ECC71;
	background-color: #82E0AA;
	margin-bottom: 10px;
	color: #1D8348;
}

.grupo-input {
    margin-bottom: 15px;
    text-align: left;
}

.grupo-input label {
    display: block;
    margin-bottom: 5px;
}

.grupo-input input {
    width: 90%;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
}

button {
    width: 90%;
    padding: 10px;
    border: none;
    border-radius: 5px;
    background-color: #007bff;
    color: white;
    cursor: pointer;
}

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