@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@400;500;700&display=swap');
body {
  font-family: "Noto Sans TC", sans-serif;
  font-weight: 300;
  background-color: #f3f3f3;
  margin: 0;
}
.login-wrap{
	width: 100%;
	height: 100vh;
	/* background-color: #EA5504; */
	background: linear-gradient(99deg, #F400AD -11.53%, #06286C 61.3%, #00296A 87.54%);
	display: flex;
	align-items: center;
	justify-content: center;
}

.login-block{
	max-width: 550px;
	min-width: 360px;
}
.login-title{
	color: white;
	font-size: 36px;
	font-weight: 700;
	width: 100%;
	text-align: center;
}
.login-name{
	color: white;
	width: 100%;
	font-size: 26px;
	font-weight: 400;
	text-align: center;
}
.login-panel{
	border: 1px solid white;
	border-radius: 10px;
	padding: 25px;
	margin-top: 30px;
	color: white;
}
.login-panel-title{
	font-size: 32px;
	margin-bottom: 30px;
}
.login-btn{
	margin-top: 15px;
	margin-bottom: 40px;
}
.login-panel label{
	font-size: 12px;
}

@media(max-width: 600px){
	.login-block{
		width: calc( 100% - 50px );
		margin-left: 25px;
	}
}
