html,body{
  font-family: Microsoft JhengHei, PingFangSC-Regular, sans-serif;
  height: 100%;
  width: 100%;
  margin: 0px;
  display: flex;
  overflow:hidden;
}

body{
	background:#FBEFE0;
}

*{
  box-sizing: border-box;
}

.test{
	font-size:36px;
	background: red;
	position: absolute;
	top:0px;
	left:0px;
	padding:20px;
}

.image{
  display: flex;
  width: 50%;
  flex-direction: column;
  align-items: flex-end;
  padding-top: 12.5vh;
}




.header{
  display: inline-flex;
  align-items: center;
  margin-bottom: 7.3vh;
}

.header-logo{
  width: 480px;
  margin-right: 40px;
}

.content{
  width: 50%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-top: 10vh;

}

.login{
	display: flex;
	flex-direction:column;
}

.login-title{
  align-self:flex-end;
  width:360px;
  margin-bottom: 6.6vh;
}

.login-form{
  display: inline-flex;
  flex-direction: column;
  align-items: flex-end;
}


.login-form-row{
  display: inline-flex;
  align-items: center;
  margin-bottom: 30px;
}

.login-form-row input{
  width: 350px;
  height: 50px;
  border:1px solid #B2B2B2;
  border-radius: 5px;
  text-indent: 15px;
  font-size: 20px;
  margin:0px 15px 0px 45px;
}

.login-form-row input{
  box-shadow: rgba(0, 0, 0, 0.05) 0px 5px 5px;
}

.login-form-row input::placeholder{
  color:#818181;
}

.action{
  width: 100%;
  display: inline-flex;
  justify-content: space-around;
  padding-left: 100px;
  letter-spacing: 0.02px;
  font-weight: bold;
}

a{
  text-decoration: none;
  width: 100%;
  text-align: center;
  border-right: 1px solid #121212;
  color: #121212;
  font-size: 20px;
}

a:last-child{
  border-right: none;
  padding-right: 0px
}

.login-button{
  background: transparent linear-gradient(0deg, #F7914E 0%, #FB6C47 100%) 0% 0% no-repeat padding-box;
  border: none;
  color: white;
  width: 350px;
  height: 50px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 24px;
  margin-bottom: 45px;
  margin-right: 15px;
}


@media (min-width: 1200px) {
  .image img{
    width: 450px;
  }
}

@media (min-width: 1600px) {
  .image img{
    width: 60%;
  }
  .content{
    width: 50%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding-top: 12.5vh;
    padding-left: 100px;
  }
}