* {
	margin:0;
	padding:0;
	box-sizing:border-box;
	font-family:"Poppins"border-box sans-serif;
}
.sp-logo{
    border-radius: 50px;
    width: 45px;
    margin-right: 0.7em;
}
.w-38{
    width:38%!important;
}
.container_glow {
    margin:10em auto 6em;
}
.button_glow {
 	position:relative; 
 	padding:16px 30px;
 	font-size:1.5rem;
 	color:var(--color);
 	/*border: 2px solid rgba(0,0,0,0.5);*/
 	border-radius:4px;
 	text-shadow:0 0 15px var(--color);
 	text-decoration:none;
 	text-transform:uppercase;
 	letter-spacing:0.1rem;
 	transition:0.5s;
 	z-index:1;
 	/*background:#ffd91e61;*/
}
.button_glow:hover {
  	color:#fff;
  	/*border:2px solid rgba(0,0,0,0,0);*/
  	box-shadow:0 0 0px var(--color);
}
.button_glow::before {
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:var(--color);
    z-index:-1;
    transform:scale(0);
    transition:0.5s;
}
.button_glow:hover::before {
    transform:scale(1);
    transition-delay:0.5s;
    box-shadow: 0 0 10px var(--color), 0 0 30px var(--color), 0 0 60px var(--color);
}
.button_glow span {
  position: absolute;
  background: var(--color);
  pointer-events: none;
  border-radius: 2px;
  box-shadow: 0 0 10px var(--color),
  0 0 20px var(--color),
  0 0 30px var(--color),
  0 0 50px var(--color),
  0 0 100px var(--color);
  transition: 0.5s ease-in-out;
  transition-delay: 0.25s;
}
.button_glow:hover span {
  opacity: 0;
  transition-delay: 0s;
}
.button_glow span:nth-child(1), .button_glow span:nth-child(3) {
  width: 40px;
  height: 4px;
}
.button_glow:hover span:nth-child(1), .button_glow:hover span:nth-child(3) {
  transform: translateX(0);
}
.button_glow span:nth-child(2), .button_glow span:nth-child(4) {
  width: 4px;
  height: 40px;
}
.button_glow:hover span:nth-child(1), .button_glow:hover span:nth-child(3) {
  transform: translateY(0);
}
.button_glow span:nth-child(1) {
  top: calc(50% - 2px);
  left: -50px;
  transform-origin: left;
}
.button_glow:hover span:nth-child(1) {
  left: 50%;
}
.button_glow span:nth-child(3) {
  top: calc(50% - 2px);
  right: -50px;
  transform-origin: right;
}
.button_glow:hover span:nth-child(3) {
  right: 50%;
}
.button_glow span:nth-child(2) {
  left: calc(50% - 2px);
  top: -50px;
  transform-origin: top;
}.button_glow:hover span:nth-child(2) {
  top: 50%;
}
.button_glow span:nth-child(4) {
  left: calc(50% - 2px);
  bottom: -50px;
  transform-origin:  bottom;
}
.button_glow:hover span:nth-child(4) {
  bottom: 50%;
}
.btn-ag{
    width: 100%;
    height: 100px;
    border-radius: 35px;
    box-shadow: 13px 9px 26px -7px rgba(0, 0, 0, 0.16), -2px -3px 26px -7px rgba(255, 255, 255, 1);
    background: #ed143d;
    border: 0;
    position: relative;
}
.btn-ag i, .btn-ag span{
    font-size: 5em;
    font-weight:900;
    color:#fff;
}
.btn-ag:active,
.btn-ag:focus {
    border: 0;
    outline: none;
}
.btn-ag.active {
    box-shadow: inset 7px 6px 15px -7px rgba(0, 0, 0, 0.17), inset -6px -5px 26px -6px rgba(255, 255, 255, 0.6);
    background: #98fb98;
}
#verify-overlay{
    display:none;
    position: fixed;
    width: 100%;
    height: 100%;
    background: #00000075;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    z-index: 1100;
}
#verify-overlay>.loader{
    position: absolute;
    top:50%;
    left:50%;
}