.site-login {
    display: flex;
    justify-content: center;
    align-items: center;
    /*height: 100vh;**/
    width: 100%;
    background-color: #f4f4f9;
}

.login-container {
    display: flex;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    width: 100%;
    max-width: 1200px;

}

.login-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100px;  /* Ancho del contenedor */
    /*height: 200px;**/ /* Alto del contenedor */
    background-color: #f4f4f9;
    overflow: hidden;
}

.login-image img {
    /*width: 200%;**/  /* Ajustar el ancho al 100% del contenedor */
    height: 100%; /* Ajustar la altura al 100% del contenedor */
    object-fit: fill; /* Cubrir todo el contenedor, recortando la imagen si es necesario */

}

.login-form-container {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.login-form-container h1 {
    font-size: 36px;
    margin-bottom: 10px;
    color: #333;
}

.login-form-container p {
    font-size: 16px;
    margin-bottom: 30px;
    color: #666;
}

.form-label {
    display: none;
}

.form-input {
    margin-bottom: 20px;
    padding: 15px;
    border-radius: 5px;
    border: 1px solid #ccc;
    /*width: 100%;**/
}

.invalid-feedback {
    margin-bottom: 20px;
    color: red;
}

.btn-primary {
    width: 48%;
    padding: 15px;
    border-radius: 5px;
    background-color: #007bff;
    border: none;
    color: #fff;
    cursor: pointer;
    margin-right: 4%;
    width: auto;
}

.btn-secondary {
    width: 48%;
    padding: 15px;
    border-radius: 5px;
    background-color: #6c757d;
    border: none;
    color: #fff;
    cursor: pointer;
}

.remember-me {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    color: #666;
}

.remember-me input {
    margin-right: 10px;
}

.forgot-password {
    text-align: right;
    margin-top: 10px;
}

.forgot-password a {
    color: #007bff;
    text-decoration: none;
}

.forgot-password a:hover {
    text-decoration: underline;
}
