

#keyboardLogin {
    width: 100%;
    /* position: absolute; */
    background: #fff;
    /* bottom: 0; */
    -webkit-transition: -webkit-transform .3s ease-in;
    transition: -webkit-transform .3s ease-in;
    -o-transition: transform .3s ease-in;
    transition: transform .3s ease-in;
    transition: transform .3s ease-in, -webkit-transform .3s ease-in;
    -webkit-transform-origin: bottom;
    -ms-transform-origin: bottom;
    transform-origin: bottom;
    -webkit-transform: scaleY(0);
    -ms-transform: scaleY(0);
    transform: scaleY(0);
    z-index: 100;
    /* bottom: 115px; */
}


.show-keyboard {
    -webkit-transform: scaleY(1) !important;
    -ms-transform: scaleY(1) !important;
    transform: scaleY(1) !important;
    -webkit-transform-origin: bottom;
    -ms-transform-origin: bottom;
    transform-origin: bottom;
    background-color: #fff;
    -webkit-transition: -webkit-transform .3s ease-in;
    transition: -webkit-transform .3s ease-in;
    -o-transition: transform .3s ease-in;
    transition: transform .3s ease-in;
    transition: transform .3s ease-in, -webkit-transform .3s ease-in;
}

.jkeyboard .jline .backspace {
    width: 100px;
    background: url('../Content/img/keyboard/backspace.svg') no-repeat center center #bdc3c7;
    background-size: 40px;
}

.hl {
    text-align: center;
}

.jkeyboard .jline .shift {
    width: 130px;
    background: url('../Content/img/keyboard/arrow-up.svg') no-repeat center center/30px 30px #bdc3c7;
    background-size: 32px;
}

body {
    padding: 0;
    margin: 0;
}


#wrapper {
    background-color: #eaeaea;
    /* width: 100vh; */
    height: 100vh;
}


#h-content {
    margin-top: 180px;
    margin-bottom: 40px;
}

.h-circle {
    background-color: #ffffff;
    width: 230px;
    height: 220px;
    border-radius: 100%;
    /*box-shadow: 20px 20px 60px #bebebe, -20px -20px 60px #ffffff;
            background: #fff no-repeat center;*/
    -webkit-box-shadow: 0px 10px 26px 11px #D8D8D8;
    box-shadow: 0px 10px 26px 11px #D8D8D8;
    margin: auto;
}

.h-circle-content {
    margin: auto;
}

.loginForm {
    margin-top: 80px;
    text-align: left;
}

.loginTitle {
    color: #4c4c4c;
    margin-bottom: 50px;
    text-align: center;
}

label.label {
    color: #4c4c4c;
}

/* The containercheckbox */
.containercheckbox {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 22px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

    .containercheckbox small {
        display: block;
        line-height: 1;
    }

    /* Hide the browser's default checkbox */
    .containercheckbox input {
        position: absolute;
        opacity: 0;
        cursor: pointer;
        height: 0;
        width: 0;
    }

/* Create a custom checkbox */
.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 18px;
    width: 18px;
    background-color: #fff;
    border-radius: 4px;
}

/* On mouse-over, add a grey background color */
.containercheckbox:hover input ~ .checkmark {
    /* background-color: #ccc; */
}

/* When the checkbox is checked, add a blue background */
.containercheckbox input:checked ~ .checkmark {
    background-color: #6a75ff;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the checkmark when checked */
.containercheckbox input:checked ~ .checkmark:after {
    display: block;
}

/* Style the checkmark/indicator */
.containercheckbox .checkmark:after {
    left: 7px;
    top: 4px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

button.btn.btn-light.btn-block.btn-lg,
button.btn.btn-light.btn-block.btn-lg:hover,
button.btn.btn-light.btn-block.btn-lg:active,
button.btn.btn-light.btn-block.btn-lg:focus {
    background-color: #6a75ff;
    color: #fff;
    box-shadow: 0px 4px 8px 0px #656464;
    -webkit-box-shadow: 0px 4px 8px 0px #656464;
    -moz-box-shadow: 0px 4px 8px 0px #656464;
    border: unset;
    height: 60px;
}

.boxShadowInside,
.form-control:focus {
    box-shadow: inset 0px 0px 12px 3px #cfcfcf;
    -webkit-box-shadow: inset 0px 0px 12px 3px #cfcfcf;
    -moz-box-shadow: inset 0px 0px 12px 3px #cfcfcf;
    border-color: unset;
    height: 70px;
    border: unset;
}

.login_page_message,
.validations {
    color: red;
}

.h-logo img {
    width: 220px;
    -o-object-fit: contain;
    object-fit: contain;
}
