body {
    margin: 0; 
    padding: 0;
    font-family:'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    background: linear-gradient(to right, #021612, #29796b); 
    height: 100vh; 
    display: flex;
    justify-content: center;
    align-items: center;
}

.login-container {
    width: 300px;
    margin: 0 auto;
    padding: 35px;
    background-color: aliceblue;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

h2 {
    text-align: center;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 15px;
}

label {
    display: block;
    font-weight: bold;
}

input[type="text"],
input[type="password"] {
    width: 100%;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 3px;
}

button[type="submit"] {
    width: 106%;
    padding: 10px;
    background-color: #015f40;
    color: #fff;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button[type="submit"]:hover {
    background-color: rgb(43, 134, 107);
}

.profile-image {
    text-align: center;
    margin-bottom: 15px; /* Espacio entre la imagen y el texto */
}

.profile-image img {
    width: 100px; /* Ajusta el tamaño de la imagen */
    height: 100px;
    border-radius: 50%; /* Hace la imagen circular */
}