.contents{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
    padding: 24px;
}

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

.contents-view .signup-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 .extra-msg-view p:last-child{
    font-size: 14px;
}

.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 .no-bottom-margin{
    margin-bottom: 10px !important;  
}
.input-field img{
    width: 20px;
    height: 20px;
    margin-right: 10px;  
}
.input-field #send-otp-btn{
  background: var(--primary-color);
  padding: 5px 15px;
  border-radius: 15px;
  color: var(--white-color);
  cursor: pointer;
  border: 1px solid rgba(0,0,0,0.05);
}
.input-field i{
  font-size: 20px; 
}
.input-field input{
  width: 100%;
  height: 45px;
  margin-left: 15px;
  border: none;
  outline: none;
  font-size: 17px;
  background: transparent;
}
/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

.agreement-view{
    width: 100%;
}
.agreement-view span{
    color: #009688 !important;
}

.otp-verification-view{
    width: 100%;
    display: flex;
    justify-content: space-between;
}
.otp-verification-btn{
    width: 50%;
    height: 46px;
    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;
    line-height: 46px;
    border-radius: 2px;
    margin-bottom: 24px;
    border: 0;
    text-align: center;
    margin-left: 15px;
}

.create-account-btn,.login-account-btn,.reset-password-btn{
    width: 240px;
    height: 44px;
    text-align: center;
    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;
}