@charset "utf-8";
/* CSS Document */
@media screen and (min-width : 1400px) {
}
@media screen and (min-width : 992px) and (max-width : 1199px) {
}
@media screen and (min-width : 768px) and (max-width : 991px) {
}
@media screen and (max-width : 991px) {
  .auth-left, .auth-right {
    grid-column: span 6 / span 6;
  }
}
@media screen and (max-width : 767px) {
  .mob-hide {
    display: none;
  }
  .auth-right {
    grid-column: span 12 / span 12;
  }
}
@media screen and (max-width : 500px) {
}
@media screen and (max-width : 340px) {
}


/* Button Animaton Border Light */

.btn-animate {
  position: relative;
  display: inline-block;
  cursor: pointer;
  outline: none;
  border: 0;
  vertical-align: middle;
  text-decoration: none;
  background: transparent;
  padding: 0;
}
.btn-animate {
  min-width: 210px;
  height: auto;
  margin-top: 30px;
}
.btn-animate .circle {
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  position: relative;
  display: block;
  margin: 0;
  width: 50px;
  height: 50px;
  background: #e81e28;
  border-radius: 40px;
}
.btn-animate .circle .icon {
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  background: #fff;
}
.btn-animate .circle .icon.arrow {
    transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    left: 15px;
    width: 1.125rem;
    height: 0.125rem;
    background: none;
}
.btn-animate .circle .icon.arrow::before {
  position: absolute;
  content: "";
  top: -0.25rem;
  right: 0.0625rem;
  width: 0.625rem;
  height: 0.625rem;
  border-top: 0.125rem solid #fff;
  border-right: 0.125rem solid #fff;
  transform: rotate(45deg);
}
.btn-animate .button-text {
    transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 9px 0;
    margin: 0 0 0 60px;
    color: #0E1133;
    line-height: 2;
    text-transform: uppercase;
    text-align: left;
    width: 100%;
    font-size: 16px;
}
.dark-layout .btn-animate .button-text {
    color: #ffffff;
}
.btn-animate:hover .circle {
	width: 100%;
	border-radius: 40px;
}
.btn-animate:hover .circle .icon.arrow {
	background: #fff;
	transform: translate(1rem, 0);
}
.btn-animate:hover .button-text {
	color: #fff;
	letter-spacing: 1px;
}