﻿body {
    background: #2D457C;
}
.login_box {
    width: 35%;
    height: 50vh;
    background: #1F2A48;
    box-shadow: 3px 5px 14px 0px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    background: url(../Content/img/login.png) no-repeat;
    background-position: center;
    background-size: cover;
}
.inner_box{
    width:100%;
    height:100%;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    padding-top:20px;
}
.user_name,
.pass_word {
    width:300px;
    display:flex;
    justify-content:end;
    align-items:center;
    margin:15px 0;
}
.user_name label,
.pass_word label {
    color: #FFFFFF;
}

.user_name input,
.pass_word input {
    width: 70%;
    height: 30px;
    text-indent: 10px;
    padding-left:10px;
    border-radius: 8px;
    margin-left: 30px;
    background: #2D457C;
    color: #FFFFFF;
    border: none;
    box-shadow: none;
}
.to_login input {
    margin-top: 20px;
    margin-left:70px;
    width: 140px;
    height: 36px;
    border-radius: 8px;
    background: #25AF5C;
    color: #FFFFFF;
    border: none;
    box-shadow: none;
}