@font-face {
    font-family: 'Metropolis Regular';
    font-style: normal;
    font-weight: normal;
    src: local('Metropolis Regular'), url('fonts/Metropolis-Regular.woff') format('woff');
}
    
@font-face {
    font-family: 'Metropolis Medium';
    font-style: normal;
    font-weight: normal;
    src: local('Metropolis Medium'), url('fonts/Metropolis-Medium.woff') format('woff');
}
    
@font-face {
    font-family: 'Metropolis Bold';
    font-style: normal;
    font-weight: normal;
    src: local('Metropolis Bold'), url('fonts/Metropolis-Bold.woff') format('woff');
}

html, body {
    color: white;
    background-color: black;
    font-size: larger;
    font-family: 'Metropolis Regular',Helvetica,Arial;
}

.form-container {
    margin: 80px auto;
    width: 300px;
}

.form-group {
    margin-bottom: 10px;
}

.form-group #logo {
    display: block; 
    margin: auto;
}

.group2 {
    text-align: center;
}

.btn {
    background: white;
    padding: 4px 20px;
    border: none;
    box-shadow: 2px 1px 1px #d3d3d3;
    color: black;
    outline: none;
    font-size: 17px;
    cursor: pointer;
    border-radius: 10px;
    margin: 20px 0px;
}

label {
    display: block;
    margin: 20px 0px;
    text-align: center;
}

.form-group .form-control {
    width: 80px;
    height: 140px;
    outline: none;
    outline-style: outset;
    outline-color: white;
    outline-width: 2px;
    padding: 0px;
    margin: 0 10px;
    border: none;
    color: white;
    background: black;
    border-bottom: 8px solid white;
    font-size: 50pt;
    text-align: center;
}

.form-group .form-control:first-of-type {
    margin-left: 0px;
}

.form-group .form-control:last-of-type {
    margin-right: 0px;
}

.has-success .form-control {
    border-bottom: 8px solid #168b3f;
}

.has-danger .form-control {
    border-bottom: 8px solid #dc0028;
}

.form-group .text-help {
    color: #dc0028;
}

.inline-label label{
    display: inline;
}

.pristine-error {
    margin: 20px 0px;
    font-size: 14px;
    text-align: center;
}
