#full_span {
    width: 100%;
    height: 100vh; /* padding from content */
	display: flex;
	justify-content: center;
	align-items: start;
}

#login_group {
	background: #FFFFFF;
	box-shadow: 10px 10px 24px rgba(0, 0, 0, 0.05);
	border-radius: 24px;
	width: 500px;
	text-align: center;
    margin-top: 288px;
}

#login_logo {
    width: 80%;
    margin-top: 64px;
    margin-bottom: 64px;
}

#username_input, #password_input {
	width: 75%;
	padding: 4px 14px 4px 14px;
	font-size: 16px;
	
	border-radius: 6px;
	border: 1px solid #888B8D;
	margin-bottom: 28px;
	height: 45px;
}

#sign_in_btn {
	width: 50%;
	height: 50px;
	background-color: #F3A7C9;
	border: none;
	border-radius: 20px;
	color: #FFFFFF;
	margin-top: 36px;
	margin-bottom: 64px;
}

.active-sign-in {
	background-color: #EE2D82 !important;
	cursor: pointer !important;
}