* {
    font-family: 'Roboto', sans-serif !important;
}

html, body {
    margin: 0;
    padding: 0;
    height: 100%;
}

.container-login {
    display: flex;
    height: 100vh;
    width: 100%;
}

.left-side {
    flex: 1;
    background-color: var(--login-panel-left-background-color);
}

.left-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    overflow: hidden;
    flex-shrink: 0; 
}

.right-side {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    background-color: var(--login-panel-right-background-color);
}

.panel-login {
    width: 100%;
    transform: scale(1.17);
    max-width: 400px;
}

.login-content {
    padding: 30px;
}

.login-header h2 {
    color: var(--login-title-color);
    font-size: var(--login-title-font-size);
    font-weight: var(--login-title-font-weight);
    margin-bottom: 20px;
}

.login-avatar {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #f8f9fa;
    border: 1px solid #dee2e6;
    border-right: none;
    border-radius: 4px 0 0 4px;
}

.login-avatar .fa {
    color: #6c757d;
}

.tfield {
    border-radius: 0 4px 4px 0 !important;
    border: 1px solid #dee2e6;
    padding: 8px 12px;
    width: 100%;
}

.btn-primary {
    background-color: var(--login-button-background);
    border-color: var(--login-button-background);
    color: var(--login-button-text-color);
}

.btn-primary:hover {
    opacity: 0.9;
}

.login-links a {
    transition: color 0.2s;
}

.login-links a:hover {
    text-decoration: underline !important;
}

@media (max-width: 768px) {
    .container-login {
        flex-direction: column;
    }
    
    .left-side {
        display: none;
    }
    
    .right-side {
        padding: 20px;
    }
    
    .panel-login {
        max-width: 100%;
    }
}