body {
    font-family: 'Inter', sans-serif;
    background-color: #f0f1f3;
    margin: 0;
    padding: 0;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.login-container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.row.no-gutters {
    height: 100%;
    width: 100%;
    display: flex;
}

.form-side {
    background: #f0f1f3;
    padding: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.login-content {
    width: 100%;
    max-width: 400px;
    text-align: center;
}

.logo {
    max-width: 300px;
    margin-bottom: 20px;
}

.slogan {
    font-weight: 700;
    font-size: 1.25rem;
    color: #212529;
    margin-bottom: 20px;
}

.form-label {
    font-weight: 400;
    color: #6c757d;
    text-align: left;
    width: 100%;
    font-size: 0.875rem;
    margin-left: 50px; /* Ajusta la posición del label */
}

.input-group {
    display: flex;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
}

.input-group-text {
    background: #fafbfd;
    border-right: 0;
    color: #2f4daa;
}

.form-control {
    border-left: 0;
    color: #6c757d;
}

.btn-primary {
    background-color: #2f4daa;
    border: none;
    width: 100%;
    max-width: 300px;
    padding: 10px;
    font-size: 1rem;
    border-radius: 5px;
    transition: background-color 0.3s;
    margin: 0 auto;
}

.btn-primary:hover {
    background-color: #223a92;
}

.links {
    text-align: center;
    margin-top: 20px;
}

.links a {
    color: #6c757d;
    text-decoration: none;
    font-size: 0.875rem;
}

.links a:hover {
    color: #2f4daa;
}

.image-side {
    background: url('img/hex_login.png') no-repeat center center; /* Actualizado para usar la imagen local */
    background-size: cover;
    width: 100%;
    height: 100%;
}

/* Ajustes para dispositivos móviles */
@media (max-width: 767px) {
    .login-container {
        padding: 20px;
    }
    
    .form-side {
        padding: 20px;
    }
    
    .login-content {
        max-width: 100%;
        text-align: left;
    }
    
    .logo {
        max-width: 200px;
        margin-bottom: 10px;
    }
    
    .slogan {
        font-size: 1rem;
        margin-bottom: 10px;
    }
    
    .form-label {
        margin-left: 0;
    }
    
    .input-group,
    .btn-primary {
        max-width: 100%;
    }
    
    .image-side {
        display: none;
    }
}
