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

.login-container {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    width: 340px;
    position: relative;
    margin-top: 100px; /* Espacio para la imagen que se desborda */
}

.logo-overflow {
    position: absolute;
    top: -116px; /* Posición negativa para desbordar hacia arriba */
    left: 50%;
    transform: translateX(-50%);
    width: 210px;
    height: 180px;
    background-image: url('../img/lince2.webp');
    background-position: center bottom;
    background-repeat: no-repeat;
    background-size: contain;
}

.login-container h2 {
    text-align: center;
    color: #1b396a;
    margin-bottom: 20px;
    padding-top: 10px; /* Añadir un poco de espacio entre el logo y el título */
}

.input-group {
    margin-bottom: 15px;
    position: relative;
}

.input-group label {
    display: block;
    margin-bottom: 5px;
    font-size: 14px;
    color: #202020;
}

.input-group i {
    margin-right: 5px;
    color: #1b396a;
}

.input-group input {
    width: 100%;
    padding: 10px;
    font-size: 14px;
    border: 1px solid #1b396a;
    border-radius: 5px;
    box-sizing: border-box;
    background-color: #f5f5f5;
    color: #202020;
}

.input-group input:focus {
    border-color: #1b396a;
    outline: none;
    box-shadow: 0 0 5px #3167be;
}

.remember-me {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 15px;
}

.remember-me input {
    margin-right: 5px;
}

.remember-me label {
    font-size: 14px;
    color: #202020;
}

button {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    color: #ffffff;
    background-color: #1b396a;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
}

button i {
    margin-right: 5px;
}

button:hover {
    background-color: #3167be;
}

.forgot-password {
    text-align: center;
    margin-top: 10px;
}

.forgot-password a {
    font-size: 14px;
    color: #1b396a;
    text-decoration: none;
}

.forgot-password a i {
    margin-right: 5px;
}

.forgot-password a:hover {
    text-decoration: underline;
    color: #3167be;
}
