form h1 {
    /*margin-bottom: 15px;*/
    padding-left: 0px;
    /*font-size: 150%;*/
    margin-bottom: 0.5rem;
    font-weight: 400;
    line-height: 1.2;
}

.show-password {
    height: calc(1.5em + 1rem + 2px) !important;
    cursor: pointer;
}

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 1rem;
}

.form-control {
    /*display: block;*/
    /*width: 100%;*/
    height: calc(1em + 0.55rem + 2px);
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    background-color: #fff !important;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    margin-top: 4px;
}

label {
    /*font-size: inherit;*/
}

form .btn {
    /*display: inline-block;*/
    /*font-weight: 400;*/
    /*color: #212529;*/
    /*text-align: center;*/
    /*vertical-align: middle;*/
    /*-webkit-user-select: none;*/
    /*-moz-user-select: none;*/
    /*-ms-user-select: none;*/
    /*user-select: none;*/
    /*background-color: transparent;*/
    /*border: 1px solid transparent;*/
    /*padding: 0.375rem 0.75rem;*/
    /*font-size: 1rem;*/
    /*line-height: 1.5;*/
    /*border-radius: 0.25rem;*/
    /*transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;*/

}
.btn-save {
    display: inline-block;
    font-weight: 400;
    color: #212529;
    text-align: center;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-color: var(--color-2);
    color: white;
    cursor: pointer;
    border: 1px solid transparent;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: 0.25rem;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;

    margin: 10px 0px 10px;
}

.btn-save:hover {
    background-color: var(--color-1);
}

a:hover {
    color: var(--color-1);
}

.login-form {
    width: 50%;
    margin: 20px 0px 20px;
}

#pass {
    width: 100%;
}

.checkbox {
    display: flex;
}

.checkbox > div {
    display: flex;
    margin-right: 3px;
}

.success {
     color: green;
 }

.info {
    color: blue;
}

.error {
    color: red;
}

.success-border {
    color: green;
    border: 1px solid green;
}

.info-border {
    color: blue;
    border: 1px solid blue;
}

.error-border {
    color: red;
    border: 1px solid red;
}

/* max-width */

@media (max-width: 767px) {
    .max-w-400 {
        max-width: 340px;
    }

    .login-form {
       width: 90%;
    }

    form h1 {
        font-size: 30px;
    }
}