body {
    background-color: #f4f4f4;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

.login-container {
    /*display: flex;*/
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.logo-container {
    text-align: center;
    margin-bottom: 40px;
}

.logo {
    max-width: 100%;
}

.textos-login {
    margin-bottom: 30px;
}

.textos-login h1 {
    font-size: 2em;
    font-weight: 600;
}

.textos-login h2 {
    font-size: 1em;
    font-weight: 600;
    line-height: 1.125;
    color: #6b6b6b;
}

.form-group {
    margin-bottom: 15px;
}

.form-label {
    font-weight: bold;
    margin-bottom: 5px;
    display: block;
    color: #333;
}

.form-input {
    width: 100%;
    padding: 8px;
    border: 1px solid #e8e8e8;
    border-radius: 10px;
    font-size: 15px;
    box-sizing: border-box;
    background-color: #e8e8e8;
    height: 37px;
}

.form-input:focus {
    border-color: #232222;
    outline: none;
}

.form-error {
    color: #ff4d4d;
    font-size: 14px;
    margin-top: 5px;
}

.checkbox {
    display: flex;
    align-items: center;
}

.form-checkbox {
    margin-right: 10px;
    margin-bottom: 20px;
}

.form-label-checkbox {
    font-size: 14px;
    color: #555;
}

.btn-login {
    width: 100%;
    padding: 10px;
    background-color: #232222;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 15px;
    cursor: pointer;
    margin-top: 20px;
    transition: background-color 0.3s ease;
}

.btn-login:hover {
    background-color: #009929;
}

.image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    padding: 0;
}

.btn-register {
    width: 100%;
    padding: 10px;
    background-color: #232222;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 15px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-register:hover {
    background-color: #009929;
}

.login-image {
    width: 100%;
    height: 100vh;
    object-fit: cover;
}

.mx-auto {
    width: 20%;
}

.hr-line {
    margin: 20px -10px;
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
}

.hr-line:before,
.hr-line:after {
    content: '';
    background-color: #009929;
    height: 3px;
    flex: 1;
    margin: 0 10px 0 10px;
    border-radius: 30px;
}

.hr-line strong {
    color: #333;
    font-weight: bold;
}

.session-info a {
    color: #009929;
    text-decoration: none;
}

@media (max-width: 1194px) {
    .image-container {
        display: none;
    }

    .login-container {
       display: flex;
    }

    .logo-container img {
        width: 65%;
    }

    .mx-auto {
        width: 400px;
    }
}