h1 {
	font-family: Playfair Display;
	color: #120c4a;
}
div.inner {
	background: white;
	width: 60%;
	border: 1px solid #ded5d5;
	padding: 2em;
}
div.informative {
	color: #505157;
	margin: 1em;
	font-size: 1em;
}
div.retrieve-myinfo {
	display: flex;
	flex: 1 1 0px;
	justify-content: space-between;
	width: 70%;
}
.with-border {
	border: 0.1em solid #7f818f;
	border-radius: 1em;
	margin: 2.4em;
}
.retrieve-myinfo-wrapper {
	width: 100%;
	margin: auto;
}

.singpass-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-family: 'Poppins', sans-serif;
	font-weight: 700;
	font-size: 16px;
	color: #000;
	background-color: #fff;
	border: 1px solid #C8C9CC;
	border-radius: 4px;
	padding: 0 16px;
	height: 40px;
	cursor: pointer;
	transition: background-color 0.2s ease;
}
.singpass-btn:hover {
	background-color: #F5F5F7;
}
.singpass-btn.red {
	background-color: #F4333D;
	border: none;
	color: #fff;
}
.singpass-btn.red:hover {
	background-color: #B0262D;
}
.singpass-logo {
	display: inline-block;
	width: 84px;
	height: auto;
	margin-right: 8px;
	margin-top: 5px;
	margin: 4px 5px 0 5px;
}

#session-checking-indicator {
	max-height: 0;
	opacity: 0;
	transform: translateY(-20px);
	pointer-events: none;
	transition:
    		max-height 0.4s ease,
			opacity 0.4s ease,
			transform 0.4s ease;
}

#session-checking-indicator.show {
	max-height: 100px;
	opacity: 1;
	transform: translateY(0);
	pointer-events: auto;
}

