body {
    /* background: #222D32; */
    font-family: 'Roboto', sans-serif;
}

body::-webkit-scrollbar {
    /* width of the entire scrollbar */
    width: 10px;
}

body::-webkit-scrollbar-track {
    /* color of the tracking area */
    background: #c2c2c2;
}

body::-webkit-scrollbar-thumb {
    /* color of the scroll thumb */
    background-color: #850606;
    border-radius: 5px;
}

.content-logo {
    margin-top: 1rem;
    width: 100%;
}

.content-logo img {
    width: 50%;
}

.title-login {
    color: #000000;
    font-size: 35px;
}

.produced-title {
    text-align: center;
    font-style: italic;
    font-weight: bold;
}

.produced-title img {
    width: 80px;
}

.login-box {
    border: 1px solid rgb(29, 28, 28);
    height: auto;
    background: rgb(223, 223, 223);
    text-align: center;
    margin: 1rem 0;
    width: 600px;
    box-shadow: 2px 2px 15px 1px #000000;
}

/*
.login-key {
    height: 100px;
    font-size: 80px;
    line-height: 100px;
    background: -webkit-linear-gradient(#27EF9F, #0DB8DE);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
*/

.login-title {
    text-align: center;
    font-size: 30px;
    letter-spacing: 2px;
    font-weight: bold;
    color: #ECF0F5;
}

.login-form {
    text-align: left;
}

input[type=text] {
    background-color: #cfcfcf;
    border: none;
    border-bottom: 2px solid #033f4d;
    border-top: 0px;
    border-radius: 0px;
    font-weight: bold;
    outline: 0;
    margin-bottom: 20px;
    padding-left: 0px;
    color: #161616;
}

input[type=password] {
    background-color: #cfcfcf;
    border: none;
    border-bottom: 2px solid #033f4d;
    border-top: 0px;
    border-radius: 0px;
    font-weight: bold;
    outline: 0;
    padding-left: 0px;
    margin-bottom: 20px;
    color: #161616;
}

.form-group {
    margin-bottom: 40px;
    outline: 0px;
}

.form-control:focus {
    border-color: inherit;
    -webkit-box-shadow: none;
    box-shadow: none;
    border-bottom: 2px solid #033f4d;
    outline: 0;
    background-color: #cfcfcf;
    color: #0f0f0f;
}

input:focus {
    outline: none;
    box-shadow: 0 0 0;
}

label {
    margin-bottom: 0px;
    color: #0f0f0f !important;
}

.form-control-label {
    font-size: 10px;
    color: #6C6C6C;
    font-weight: bold;
    letter-spacing: 1px;
}

.btn-outline-primary {
    border-color: #161616;
    color: #16191a;
    border-radius: 0px;
    font-weight: bold;
    letter-spacing: 1px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
}

.btn-outline-primary:hover {
    border-color: #161616;
    color: #16191a;
    transition: 0.1s;
    transform: scale(1.3);
    background-color: transparent;
}

/* CHECKBOX */

.check-label {
    color: #161616;
    font-size: 14px;
    font-weight: 500;
    font-style: italic;
    vertical-align: top;
    display: inline-block;
}

.checkbox {
    height: 17px;
    width: 17px;
    min-height: auto;
    margin: 2px 8px 0 0;
    border: 2px solid #161616;
    border-radius: 2px;
    cursor: pointer;
    display: inline-block;
    position: relative;
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    transition: all 0.3s ease 0s;
}

.checkbox:before {
    content: '';
    height: 5px;
    width: 9px;
    border-bottom: 2px solid #161616;
    border-left: 2px solid #161616;
    transform: rotate(-45deg);
    position: absolute;
    left: 2px;
    top: 2.5px;
    transition: all 0.3s ease;
}

.checkbox:checked:before {
    opacity: 1;
}

.checkbox:not(:checked):before {
    opacity: 0;
}

.checkbox:focus {
    outline: none;
}