html,body,h1,h2,h3,h4,h5,h6,p,input,button,form,label{
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
}
html{
    height: 100%;
    background-image:url("https://glacierpayments.com/wp-content/uploads/2021/01/20201118-_dsc1916_17_18_19_20-1-scaled.jpg");
    background-image: url("https://glacierpayments.com/wp-content/uploads/2021/01/20201118-_dsc1916_17_18_19_20-1-scaled.jpg");
    background-position: center center;
    background-repeat: no-repeat;
    background-size:cover;
}
body {
    min-height: 100%;
    padding: 0px;
    margin: 0px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.login{
    /*                background-color: #FFFFFF;
                    border: 5px solid #1c4494;*/
    display:flex;
}
h1{
    text-align: center;
    color: #FFFFFF;
    text-transform: uppercase;
}
.left{
    padding:25px 25px;
}
.right{
    padding:25px 25px;
    /*background-color:#1c4494;*/
    display: flex;
    align-items: center;
}
.input_wrap{
    border: 5px solid #F5F5F5;
    background: #F5F5F5;
    margin-bottom: 10px;
    border-radius: 4px;
}
.input_box{
    width: calc(100% - 20px);
    border: none;
    background: #F5F5F5;
    /* margin-bottom: 10px; */
    padding: 10px;
    border-radius: 4px;
    color: #1c4494;
    /* font-weight: bold; */
    font-size: 11px;
    transition: background-color 0.25s, color 0.25s;
    outline: none;
}
input.input_box:focus {
    background-color: #1c4494;
    color: #FFFFFF;
    /*font-weight: ;*/
    outline:none;
}
.input_box::placeholder {
    color: #1c4494e0;
    /*font-weight: bold;*/
    font-size: 11px;
}
.input_show{
    width: 100%;
    background-color: #f5f5f5;
    border: none;
    border-radius: 4px;
    color: #1c4494;
    font-size: 14px;
    padding: 10px;
    margin-bottom: 10px;
  transition:background-color 0.25s, color 0.25s;
}
.login_submit{
    background-color: #1c4494;
    color: #FFFFFF;
    font-size: 14px;
    width:100%;
    padding:10px;
    border:none;
    border-radius:3px;
    transition:background-color 0.25s, color 0.25s;
    outline:none;
}
.login_submit:hover,.login_submit:focus{
    background-color: #ffffff;
    color: #1c4494;
    cursor: pointer;
    outline:none;
}

