@import url('https://fonts.googleapis.com/css2?family=Paytone+One&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

body{
	font-family: 'Poppins', sans-serif;
	font-size: 18px;
}

.main {
	display: flex;
	flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
}

h1{
	font-family: 'Paytone One', sans-serif;
	font-size: 2.5rem;
	text-align: center;
}

h2{
	text-align: center;
}
.logo img{
	width: 100%;
}

form{
	width: 100%;
}

* { box-sizing:border-box; }

/* basic stylings ------------------------------------------ */


/* form starting stylings ------------------------------- */
.group 			  { 
  position:relative; 
  margin-bottom:45px; 
}
.group input 				{
  font-size:18px;
  padding:10px 10px 10px 5px;
  display:block;
  width:100%;
  border:none;
  border-bottom:1px solid #757575;
}
.group input:focus { outline:none; }

/* LABEL ======================================= */
.group label 				 {
  color:#999; 
  font-size:18px;
  font-weight:normal;
  position:absolute;
  pointer-events:none;
  left:5px;
  top:10px;
  transition:0.2s ease all; 
  -moz-transition:0.2s ease all; 
  -webkit-transition:0.2s ease all;
}

/* active state */
.group 	input:focus ~ label,
.group input:valid ~ label 		{
  top:-20px;
  font-size:14px;
  color:#5264AE;
}

/* BOTTOM BARS ================================= */
.group .bar {
	position:relative;
	display:block;
	width:100%;
}
.group .bar:before,
.group .bar:after 	{
  content:'';
  height:2px; 
  width:0;
  bottom:1px; 
  position:absolute;
  background:#5264AE; 
  transition:0.2s ease all; 
  -moz-transition:0.2s ease all; 
  -webkit-transition:0.2s ease all;
}
.group .bar:before {
  left:50%;
}
.group .bar:after {
  right:50%; 
}

/* active state */
.group input:focus ~ .bar:before,
.group input:focus ~ .bar:after {
  width:50%;
}

/* HIGHLIGHTER ================================== */
.group .highlight {
  position:absolute;
  height:60%; 
  width:100px; 
  top:25%; 
  left:0;
  pointer-events:none;
  opacity:0.5;
}

/* active state */
.group input:focus ~ .highlight {
  -webkit-animation:inputHighlighter 0.3s ease;
  -moz-animation:inputHighlighter 0.3s ease;
  animation:inputHighlighter 0.3s ease;
}

/* ANIMATIONS ================ */
@-webkit-keyframes inputHighlighter {
	from { background:#5264AE; }
  to 	{ width:0; background:transparent; }
}
@-moz-keyframes inputHighlighter {
	from { background:#5264AE; }
  to 	{ width:0; background:transparent; }
}
@keyframes inputHighlighter {
	from { background:#5264AE; }
  to 	{ width:0; background:transparent; }
}




/* ******************** Remove Arrows/Spinners ********************** */
/* 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;
}


.btn-blue{
	background: #3A1FA2;
    border-radius: 10px;
    padding: 20px;
    width: 100%;
    color: #FFFFFF;
    font-size: 18px;
    font-weight: 500;
}
.btn-blue:hover{
	background: #221068;
	color: #FFFFFF;
}


.otp-input-group {
	display: flex;
	flex: 1;
	justify-content: space-around;
	margin: 0 0 40px 0;
}
.otp-input-group input {
	width: 15%;
	padding: 5px;
	border-radius: 5px;
	border:  1px solid #CCCCCC;
	text-align: center;
	font-size: 2rem;
}
.red{
	color: #FF0000;
}
.green{
	color: #00cc00;
}
.download{
	border-radius: 50%;
    display: flex;
    flex-direction: column;
    text-align: center;
    justify-content: center;
    align-items: center;
    width: 200px;
    height: 200px;
    margin: 0 auto;
    padding: 10px;
}
.download span{
	width: 100px;
	margin: 10px 0;
}
.download svg{
	margin: 10px 0;
}