.contents .login-details{
	text-align: center;
}
.contents .login-details img{
	height: 70px !important;
}
.contents .login-details p {
	font-size: 14px;
}

.contents .login-details span{
	display: inline-block;
	height: 10px;
	width: 50px;
	border-radius: 20px;
	background: var(--primary-color);
}

.contents .extra-msg-view {
	position: absolute;
	top: -0px;
	left: 0;
	width: 100%;
	padding: 5px 10px;
	text-align: center;
	font-size: 16px;
	color: var(--white-color);
	background: var(--green-color);
}

.contents {
	width: 100%;
	display: flex;
	flex-direction: column;
    padding: 24px;
}

.input-field {
    width: 100%;
    height: 48px;
    display: flex;
    flex-direction: row;
    align-items: center;
    box-shadow: 0 3px 1px -2px rgba(0,0,0,.2), 0 2px 2px 0 rgba(0,0,0,.14), 0 1px 5px 0 rgba(0,0,0,.12);
    padding: 0 12px;
    box-sizing: border-box;
    line-height: 48px;
    background: #fff;
    border-radius: 2px;
    margin-bottom: 35px;
    position: relative;
}

.input-field img{
    width: 20px;
    height: 20px;
    margin-right: 10px;  
}

.input-field i {
	font-size: 20px;
}

.input-field input {
	width: 100%;
	height: 45px;
	border: none;
	outline: none;
	font-size: 17px;
	background: transparent;
}

.input-field-2 {
	position: relative;
	width: 100%;
	background: #FFFFFF;
	padding: 5px 15px;
	margin-top: 1em;
	border-radius: 15px;
	border: 1px solid rgba(0, 0, 0, 0.05);
}

.input-field-2 div {
	display: flex;
	flex-direction: column;
}

.input-field-2 div p:first-child {
	font-size: 16px;
}

.input-field-2 div p:last-child {
	font-size: 13px;
	color: rgba(0, 0, 0, 0.5);
}

.input-field-2 i {
	position: absolute;
	right: 10px;
	top: 50%;
	transform: translateY(-50%);
	font-size: 20px;
}

.input-field-2:active{
    transform: scale(0.9);
    transition: 0.1s;
}


.login-btn{
    width: 240px;
    height: 44px;
    text-align: center;
    line-height: 44px;
    background: #009688;
    font-size: 14px;
    color: #fff;
    border: 0;
    border-radius: 2px;
    box-shadow: 0 3px 1px -2px rgba(0,0,0,.2), 0 2px 2px 0 rgba(0,0,0,.14), 0 1px 5px 0 rgba(0,0,0,.12);
    transition: .3s cubic-bezier(.25,.8,.5,1),color 1ms;
}

.secondary-action-btn{
    padding: 0 15px;
    height: 40px;
    text-align: center;
    line-height: 40px;
    background: #f5f5f5;
    font-size: 14px;
    color: rgba(0,0,0,.87);
    border: 0;
    border-radius: 2px;
    box-shadow: 0 3px 1px -2px rgba(0,0,0,.2), 0 2px 2px 0 rgba(0,0,0,.14), 0 1px 5px 0 rgba(0,0,0,.12);
    transition: .3s cubic-bezier(.25,.8,.5,1),color 1ms;
}

#register-account-btn{
	display: inline-block;
	width: 100%;
	text-align: center;
	margin-top: 10px;
}

#register-account-btn a{
	color: var(--primary-color);
	text-decoration: none;
}