@import url(https://fonts.googleapis.com/icon?family=Material+Icons);
body {
    color: #fafafa;
    font-family: "Material+Icons", Helvetica, Arial, Sans-Serif;
    text-align: center;
}

.header-container {
    background: #fafafa;
    color: #000000de;
    min-height: 50px;
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 0px;
    padding-left: 20px;
}

.app-name {
    font-size: 22px;
    margin-left: 10px;
    color: #000000de;
}
.alert-danger {
    color: #721c24;
    background-color: #f8d7da;
    border-color: #f5c6cb;
}
.alert {
    padding: 0.5rem 1.25rem;
    margin-bottom: 0.5rem;
    border: 1px solid transparent;
    border-radius: 0.25rem;
}
h3 {
    padding: 5px 0px;
    margin: 5px 0px;
}
.panel {
    -webkit-transition: all 0.7s;
    transition: all 0.7s;
    background: #fff;
    border-radius: 5px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.65);
    color: #212121;
    height: 335px;
    left: 0;
    margin: 0 auto 10px;
    overflow: hidden;
    padding-top: 15px;
    position: relative;
    right: 0;
    top: 50px;
    width: 400px;
    z-index: 200;
}

.container {
    width: 90%;
    margin: 0 5% 0;
    margin-bottom: 20px;
    padding-bottom: 30px;
    height: 335px;
    /* display: flex;
    flex-direction: column;
    justify-content: space-between; */
}

.username-password-container {
    height: 154px !important;
}

.pin-container {
    height: 90px !important;
}

.panel button {
    -webkit-transition: all 0.7s;
    transition: all 0.7s;
    background: #0d6efd;
    border: 0;
    border-radius: 6px;
    color: #212121;
    cursor: pointer;
    display: block;
    font-size: 1.5em;
    font-weight: 300;
    margin: 20px auto 5px;
    padding: 10px;
    width: 100%;
}

.panel button:active {
    background: #03a9f4;
    color: #212121;
}
.panel button:hover {
    -webkit-transition: all 0.55s;
    transition: all 0.55s;
    background: #4fc3f7;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.65);
    color: #fff;
    text-shadow: 0 0 1px rgba(0, 0, 0, 0.65);
}

.form__group {
    position: relative;
    height: 45px !important;
    padding: 15px 0 0;
    margin: 10px 0px;
}

.form__field {
    font-family: inherit;
    width: 100%;
    border: 0;
    border-bottom: 1px solid #d2d2d2;
    outline: 0;
    font-size: 16px;
    color: #212121;
    padding: 7px 0;
    background: transparent;
    transition: border-color 0.2s;
}

.form__field::placeholder {
    color: transparent;
}

.form__field:placeholder-shown ~ .form__label {
    font-size: 16px;
    cursor: text;
    top: 20px;
}

label,
.form__field:focus ~ .form__label {
    position: absolute;
    top: 0;
    display: block;
    transition: 0.2s;
    font-size: 12px;
    color: #9b9b9b;
}

.form__field:focus ~ .form__label {
    color: #03a9f4;
}

.form__field:focus {
    padding-bottom: 6px;
    border-bottom: 2px solid #03a9f4;
}

form:invalid > div > #submit {
    pointer-events: none;
    opacity: 0.5;
}

.has-error .control-label,
.has-error .help-block {
    color: #dc3545;
}
.help-block {
    display: block;
    margin-top: 5px;
    margin-bottom: 10px;
    color: #737373;
    text-align: left;
    font-weight: bold;
    font-size: 10px;
}

input[aria-invalid="true"].form__field:focus ~ .form__label {
    color: #dc3545;
}

.has-error .form__field {
    border-bottom-color: #dc3545;
    border-width: 2px;
}

.has-error .form__label {
    color: #dc3545;
}

.form__field[aria-required="true"]:focus ~ .form__label {
    color: #03a9f4;
}

.numeric-keypad,
.numeric-keypad__key,
.numeric-keypad__button {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.pin-container {
    display: flex;
    gap: 3px;
}
.pin__control {
    width: 80%;
}

.num__pad__control {
    width: 20%;
    display: flex;
}

.num__pad__control .keyboard {
    padding: 20px;
}

.numeric-keypad {
    background: #f4f4f4;
    border: 1px solid;
    float: left;
    list-style: none;
    margin: 0;
    padding: 0;
    width: 300px;
}

.numeric-keypad__key {
    background: #ccc;
    border: 1px solid;
    display: block;
    float: left;
    text-align: center;
    width: 33.33%;
}
.numeric-keypad__key__double {
    width: 100%;
}

.numeric-keypad__button {
    border: none;
    color: #000;
    display: block;
    font-family: "Helvetica Neue", Arial, sans-serif;
    height: 70px;
    line-height: 70px;
    padding: 0;
    text-decoration: none;
    width: 100%;
}

#num__keypad__container {
    display: none;
    background: #0d6e9d;
    color: white;
    font-weight: bold;
    padding: 20px;
    font-size: 13px;
    border-radius: 4px;
    display: none;
    max-width: 500px;
}

#num__keypad__container[data-popper-reference-hidden] {
    visibility: hidden;
    pointer-events: none;
}
#num__keypad__container[show-popper] {
    display: block;
    z-index: 9999;
}

svg {
    fill: #0d6efd;
}
.btn-primary {
    color: #fff;
    background-color: #007bff;
    border-color: #007bff;
}

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

.back-container{
    display: flex;
    justify-content: flex-start;
}
