
body {
    background: darkgray;
}
.containerBox {
    max-width: 400px;
    margin-top:30px;
    box-shadow: 10px 10px 10px gray;
}

.footerRow {
    background: gainsboro;
    height: 60px;
}
.headerRow {
    background: black;
    height: 160px;
}

.bodyRow {
    background: white;
    padding: 10px;
}
input {
    width: 100%;
}
.password{
    width: calc(100% - 70px);
}
.eyeButton {
    border: thin solid gray;
}
.keepTogether {
    white-space:nowrap;
}
.glassPaneOn {
    display:block;
    position:absolute;
    top:0;
    left:0;
    height:100%;
    width:100%;
    background-color:rgba(0,0,0,0.03);
    pointer-events:auto;
}
.glassPaneOff {
    display:none;
    pointer-events:none;
}
/* disable spinner arrows on input type number */
/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
input[type=number] {
    -moz-appearance: textfield;
}
