html{
    box-sizing: border-box;
}
body{
    display: flex;
    background-color:#454545;
    flex-direction: column;
    justify-items: center;
    align-items: center;
    box-sizing: border-box;
    font-family: Roboto;
}
.main{
    background-image:url('/application_Shared/Assets/Images/Earth-Wallpaper.jpg');
    position: absolute;
    top:0px;
    right:0px;
    left:0px;
    bottom:40px;
    z-index:-1;
    background-position: center top;
    background-repeat: no-repeat;
    background-color:#000;
}
.formHolder{
    display:flex;
    flex-direction: row;
    box-sizing: border-box;
    margin-bottom: 20px;
}

label {
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 50px;
    max-height: 40px;
    min-height: 40px;
    padding-left:2px;
    background-color: #87aa7e;
    color: #ffffff;
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
    flex:0;
}
::placeholder{
    color:#a1a1a1;
}
input[type="password"], input[type="text"] {
    box-sizing: border-box;
    max-height: 40px;
    min-height: 40px;
    border: 1px solid #dee0e4;
    padding: 0 15px;
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;   
    flex:1;
}

input[type="submit"]{
    box-sizing: border-box;
    max-height: 40px;
    min-height: 40px;
    color: #dee0e4;
    border:none;
    background-color: #5c7e52;
    padding: 0 15px;
    border-radius: 8px;
    flex:1;
}

input[type="submit"]:hover{
    background-color:#638858;
}

.logo{
    min-height:80px;
    min-width:600px;
    flex:1;
    background-image:url('/application_Shared/Assets/Images/bizpoint_logo_vector.svg');
    background-position: center; 
    background-repeat: no-repeat;
    background-size: contain;
    margin-bottom:30px;
    margin-top:25px;
}
.caption{
    color:#dee0e4;
    margin-bottom:20px;
    font-size: 20pt;
}