main#login{
  display: flex;
  flex-wrap: wrap;
  min-height: calc(100vh - 30px);
  min-width: 600px;
  justify-content: center;
  align-items: center;
}
main#login > header{
  background-color: transparent;
  min-width: 0;
  width: 300px;
  height: auto;
  padding: 0;
  margin: auto 0;
}

main#login > section{
  width: 300px;
  height: calc(100vh - 30px - 150px);
  min-height: 300px;
  padding: 15px 0 15px 15px;
  margin: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}
main#login > section > #login_form > label{
  display: flex;
  height: 36px;
  align-items: center;
  margin-bottom: 20px;
}
main#login > section > #login_form > label > input{
  width: calc(100% - 50px);
  flex-grow: 1;
  font-size: 16px;
  height: 100%;
}
main#login > section > #login_form > label > h3{
  width: 50px;
  font-size: 14px;
  color: #446285;
  text-align: center;
  font-weight: bold;
}
main#login > section > #login_form > #login_submit{
  display: flex;
  justify-content: center;
  padding-top: 20px;
}
main#login > section > #login_form > #login_submit > .submitAction {
  border: solid 1px #425b77;
  border-radius: 5px;
  background: linear-gradient(to bottom, #afc8e0 2%, #86acd1 6%, #628ab2 50%,#446285 50%, #446285);
  color: #fff;
  font-size: 14px;
  line-height: 20px;
  padding: 0 4px;
  box-shadow: 0 1px 2px rgba(0,0,0,.5);
  height: 40px;
  margin-right: 5px;
  flex-grow: 1;
}
main#login > section > #login_form > #login_submit > input[type="reset"]{
  width: 30%;
  height: 40px;
  border: solid 1px #474747;
  border-radius: 5px;
  background: linear-gradient(to bottom, #c0c0c0 2% , #999 6%, #777 50%,#474747 50%, #474747);
  color: #fff;
  font-size: 14px;
  line-height: 20px;
  padding: 0 4px;
  box-shadow: 0 1px 2px rgba(0,0,0,.5);
}

main#login > section .msg{
  display: block;
  left: -300px;
  margin-top: 30px;
  position: absolute;
  text-align: center;
  width: 600px;
}
main#login > section .msg > font {
  color: red;
}

#app_link{
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
  height: 80px;
  padding-top: 40px;
  position: relative;
}
#app_link:before{
  content: "";
  display: block;
  width: 100%;
  max-width: 600px;
  height: 1px;
  background-color: #446285;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
}
#app_link > a{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 135px;
  height: 40px;
  overflow: hidden;
  margin: 0 5px;
  border-radius: 5px;
  position: relative;
  overflow: hidden;
}
#app_link > a.googleplay > img{
  position: absolute;
  top: -10px;
  left: -10px;
  width: 155px;
  height: 60px;
}
#app_link > a.introduction{
  text-decoration: none;
  padding-left: 35px;
  border: solid 1px #474747;
  border-radius: 5px;
  background: linear-gradient(to bottom, #c0c0c0 2% , #999 6%, #777 50%,#474747 50%, #474747);
  color: #fff;
  font-size: 14px;
  line-height: 1.25em;
  box-shadow: 0 1px 2px rgba(0,0,0,.5);
  position: relative;
}
#app_link > a.introduction:before{
  content: '';
  width: 28px;
  height: 28px;
  border: solid 3px #fff;
  border-radius: 15px;
  position: absolute;
  left: 7px;
  top: 0;
  bottom: 0;
  margin: auto 0;
}
#app_link > a.introduction:after{
  content: '';
  width: 14px;
  height: 14px;
  border-left: solid 14px #fff;
  border-top: solid 7px transparent;
  border-bottom: solid 7px transparent;
  position: absolute;
  left: 15px;
  top: 0;
  bottom: 0;
  margin: auto 0;
}

main#login > p {
  width: 100%;
  height: 20px;
  font-size: 14px;
  text-align: center;
  color: #446285;
  margin: 40px auto 10px;
}
