﻿body {
    padding: 0px;
    margin: 0px;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.login-wrapper {
    /* Height and width fallback for older browsers. */
    height: 100%;
    width: 100%;
    /* Set the height to match that of the viewport. */
    height: 100vh;
    /* Set the width to match that of the viewport. */
    width: 100vw;
    /* Remove any browser-default margins. */
    margin: 0;
}

.login-background {
    /*    overflow-x: hidden;*/
    /*    background: url('../Images/Background/login-background.jpg') no-repeat center center fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;*/
    background-image: url("../Images/Background/login-background.jpg");
    background-repeat: no-repeat;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    background-position: center;
    height: 100%;
}

.login-wrapper .row {
    margin: 0;
}


.digit-group input {
    width: 50px;
    height: 50px;
    background-color: #F3F6F9;
    border: none;
    line-height: 50px;
    text-align: center;
    font-size: 24px;
    font-family: 'Raleway', sans-serif;
    font-weight: 200;
    margin: 0 5px;
    -ms-border-radius: 10px;
    border-radius: 10px;
}

.digit-group input:active,
.digit-group input:focus {
    outline: none !important;
    border: 2px solid red;
    box-shadow: 0 0 10px #719ECE;
}