body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.recovery-container {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    max-width: 400px;
    width: 100%;
    text-align: center;
}

.recovery-container img {
    max-width: 80px;
    margin-right: 10px;
    vertical-align: middle;
}

.recovery-container h1 {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    margin-bottom: 20px;
}

.recovery-container form {
    display: flex;
    flex-direction: column;
	align-items: center; /* Centrar los elementos del formulario */
}

.recovery-container .form-group {
    margin-bottom: 15px;
	width: 80%; /* Ajustar el ancho del cuadro de texto */
}

.recovery-container .form-control {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    
}

.form-control {
	width: 93%;
}
.recovery-container .btn {
    padding: 10px;
    background-color: #666; /* Color del botón submit en el index.php */
    border: none;
    color: white;
    border-radius: 4px;
    cursor: pointer;
    margin-top: 10px;
	width: 80%; /* Ajustar el ancho del botón */
}

.recovery-container .btn:hover {
    background-color: #455555; /* Color del botón submit en el index.php */

}

.recovery-container .alert {
    margin-top: 20px;
}
.btn {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2); /* Sombra para dar efecto 3D */
}

.btn:active {
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2); /* Sombra más pequeña al hacer clic */
    transform: translateY(2px); /* Desplaza ligeramente el botón hacia abajo al hacer clic */
}
.btn {
    transition: all 0.3s ease-in-out; /* Transición suave para todos los cambios */
}

.btn:hover {
    transform: scale(1.05); /* Aumenta ligeramente el tamaño al pasar el ratón */
}