html {
	margin: 0;
	padding: 0;
	height: 100%;
}

body {
	margin: 0;
	padding: 0;
	height: 100%;
	background-color: #f5f6fb;
	font-family: Inter, Arial, Helvetica, sans-serif;
}

.login-label {
	font-weight: bold;
	font-size: 14px;
	margin: 15px 0 10px 0;
}

.login-input {
	box-sizing: border-box;
	width: 100%;
	height: 40px;
	padding: 0 20px;
	border-radius: 20px;
	border: 1px solid #e7edf3;
	max-width: 100%;
	outline: none;
	font-size: 15px;
}

.login-input:focus {
	border: 1px solid #1c8be8;
}

.login-button {
	box-sizing: border-box;
	height: 40px;
	padding: 0 20px;
	border-radius: 20px;
	background-color: #1c8be8;	
	border: none;
	color: white;
	width: 100%;
	font-size: 17px;
}

.login-divider {
	display: flex;
	justify-content: space-around;
	color: #b0b7c7;
	padding: 15px 0;
}

.login-divider > div {
	display: flex;
	align-items: center;
}

.login-divider-line {
	display: inline-block;
	background-color: #b0b7c7;
	height: 1px;
	width: 60px;
	margin: 0 1em;
}

.login-sso-button {
	display: flex;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
	height: 40px;
	padding: 0 20px;
	border-radius: 20px;
	background-color: #f5f6fb;	
	border: none;
	width: 80%;
	font-size: 17px;
	text-decoration: none;
	color: #020d2e;
	gap: 10px;
}

.login-page {
	display: flex;
	min-height: 100%;
	justify-content: space-around;
	align-items: center;
	color: #020d2e;
}

.login-container {
	padding-bottom: 20px;
	margin: 20px 0;
	width: 446px;
	max-width: 100%;
	background-color: white;
	border-radius: 15px;
	display: flex;
	flex-direction: column;
	box-shadow: 0 0 15px 1px #eee;
}

.login-container-header {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	width: 100%;
	aspect-ratio: 446/247;
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
}

.input-button-container {
	position: absolute;
	right: 0;
	top: 0;
	bottom: 0;
	margin-right: 1em;
	display: flex;
	align-items: center;
}

.input-button {
	cursor: pointer;
	padding: 0;
	margin: 0;
}

.login-trademark {
	padding-top: 1em;
	text-align: center;	
}