/* Estilos globales */
body {
    font-family: 'Work Sans', sans-serif;
    background-color: #f0f4f8;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

/* Contenedor del formulario de restablecimiento */
.login-container {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: 100%;
    max-width: 400px;
}

/* Estilo para el logo */
.login-logo {
    width: 180px;
    margin-bottom: 20px;
}

/* Estilo para los campos de input */
.input-group {
    position: relative;
    margin-bottom: 20px;
}

.input-group i {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: #555;
}

.input-group input {
    width: 100%;
    padding: 12px 40px;
    border: 1px solid #ccc;
    border-radius: 25px;
    font-size: 16px;
    box-sizing: border-box;
    outline: none;
}

.input-group input:focus {
    border-color: #5c9c31;
}

/* Estilo para el botón de restablecimiento */
.login-btn {
    background-color: #5c9c31;
    color: #ffffff;
    padding: 12px 20px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-size: 16px;
    width: 100%;
    margin-bottom: 10px;
}

.login-btn:hover {
    background-color: #4a7a25;
}

/* Estilo para el botón de cancelación */
.cancel-btn {
    background-color: #cccccc;
    color: #333333;
    padding: 12px 20px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-size: 16px;
    width: 100%;
}

.cancel-btn:hover {
    background-color: #999999;
}

/* Estilos para los mensajes */
ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

ul li {
    background-color: #eaf6e8;
    color: #2c662d;
    border-left: 5px solid #5c9c31;
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 5px;
    text-align: left;
}

/* Estilo para mensajes de error */
ul li.error {
    background-color: #f8d7da;
    color: #842029;
    border-left: 5px solid #f5c2c7;
}
