:root {
    --footerheight:50px;
}
html {
    height:100%;
    width: 100%;
}

body{
    margin: 0px;
    padding:0px;
    font-family: roboto;
    font-size:16px;
    height:100%;
    width: 100%;
}

.material-icons.md-30 { 
    font-size: 30px; 
    vertical-align: top;
}

.container {
    display: block;
    box-sizing: border-box;
    align-items: center;
    margin:0;
    padding:0;
    width:100%;
    height: 100%;
    min-height: 500px;
}   

main{  
    display: block;
    box-sizing: border-box;
    background-color: white;
    width: 100%;
    height: calc(100% - 51px);
    position: relative;
}

.clearfix::after {
    content: "";
    clear: both;
    display: table;
}

.wrapper {
    display:block;
    margin:0;
    box-sizing: border-box;
    width: fit-content;
    height: fit-content;
    position: absolute;
    top: 50%;
    left: 50%;
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.border {
    display:block;
    box-sizing: border-box;
    width: fit-content;
    height: fit-content;
    border:1px solid black;
    padding: 0px 20px 20px 20px;
    border-radius: 20px;
}

.login {
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    margin-top: 10px;
}

.image {
    padding: 10px;
    margin-bottom:10px;
}

.logo {
    display: block;
    float:left;
    box-sizing: border-box;
    height: 60px;
}

.logo1 {
    display: block;
    border: 1px solid darkgrey;
    overflow: hidden;
    border-radius: 10px;
    float:right;
    box-sizing: border-box;
    height: 60px;
}

.border hr {
    margin-bottom: 20px;
}

.border label {
    display: block;
    font-size: 18px;
    margin-top: 10px;
}

.border input {
    font-size:18px;
    padding: 10px;
    margin-top: 5px;
    width: 250px;
    outline: none;
    border: 1px solid black;
    border-radius: 5px  ;
}

.border input[type=password] {
    width: 200px;
}

.border input[type=submit] {
    display: block;
    width:fit-content;
    font-size: 18px;
    margin: 20px auto 0px auto;
    cursor: pointer;
}

.border button{
    display: inline-block;
    box-sizing: border-box;
    padding: 5px;
    border: 1px solid black;
    border-radius: 5px;
    vertical-align: bottom;
    height: 45px;
    width: 45px;
    cursor: pointer;
}

.err {
    width: fit-content;
    height: 30px;
    display: block;
    box-sizing: border-box;
    color: red;
    margin: 10px auto 0px auto;
    text-align:center;
}

footer{
    display: block;
    box-sizing: border-box;
    width: 100%;
    height: var(--footerheight);
    padding-top: 15px;
    background-color: rgb(68, 68, 68);
    color:darkgray;
    text-align: center;
}