
#login figure, #register figure {
  text-align: center;
  margin-bottom: 30px;
  background: #480048;
  background: -webkit-linear-gradient(left, #480048, #C04848);
  background: linear-gradient(to right, #003284, #00397785);
  margin: -45px -60px 30px -60px;
  padding: 20px 60px 25px 60px;
}
@media (max-width: 767px) {
  #login figure, #register figure {
    margin: -30px -30px 20px -30px;
    padding: 15px 60px 20px 60px;
  }
}
#login aside, #register aside {
  width: 430px;
  padding: 45px 60px 60px 60px;
  position: absolute;
  left: 0;
  top: 0;
  overflow-y: auto;
  background-color: #fff;
  min-height: 100vh;
}
@media (max-width: 767px) {
  #login aside, #register aside {
    width: 100%;
    padding: 30px;
  }
}
#login aside form, #register aside form {
  margin-bottom: 60px;
  display: block;
}
#login aside .copy, #register aside .copy {
  text-align: center;
  position: absolute;
  height: 30px;
  left: 0;
  bottom: 30px;
  width: 100%;
  color: #999;
  font-weight: 500;
}

input:-webkit-autofill, textarea:-webkit-autofill, select:-webkit-autofill {
  background-color: #fff !important;
  color: #444 !important;
}

/*Password strength */
#pass-info {
  width: 100%;
  margin-bottom: 15px;
  color: #555;
  text-align: center;
  font-size: 12px;
  font-size: 0.75rem;
  padding: 5px 3px 3px 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  border-radius: 3px;
}
#pass-info.weakpass {
  border: 1px solid #FF9191;
  background: #FFC7C7;
  color: #94546E;
}
#pass-info.stillweakpass {
  border: 1px solid #FBB;
  background: #FDD;
  color: #945870;
}
#pass-info.goodpass {
  border: 1px solid #C4EEC8;
  background: #E4FFE4;
  color: #51926E;
}
#pass-info.strongpass {
  border: 1px solid #6ED66E;
  background: #79F079;
  color: #348F34;
}
#pass-info.vrystrongpass {
  border: 1px solid #379137;
  background: #48B448;
  color: #CDFFCD;
}

/*-------- 1.2 Buttons --------*/
a.btn_1,
.btn_1 {
border: none;
color: #fff;
background: #760e15;
outline: none;
cursor: pointer;
display: inline-block;
text-decoration: none;
padding: 15px 30px;
color: #fff;
font-weight: 600;
text-align: center;
line-height: 1;
-moz-transition: all 0.3s ease-in-out;
-o-transition: all 0.3s ease-in-out;
-webkit-transition: all 0.3s ease-in-out;
-ms-transition: all 0.3s ease-in-out;
transition: all 0.3s ease-in-out;
-webkit-border-radius: 5px;
-moz-border-radius: 5px;
-ms-border-radius: 5px;
border-radius: 5px;
}
a.btn_1:hover,
.btn_1:hover {
background: #0054a6;
color: #fff;
}
a.btn_1.full-width,
.btn_1.full-width {
display: block;
width: 100%;
text-align: center;
margin-bottom: 5px;
}
a.btn_1.medium,
.btn_1.medium {
font-size: 16px;
font-size: 1rem;
padding: 18px 40px;
}
a.btn_1.rounded,
.btn_1.rounded {
-webkit-border-radius: 25px !important;
-moz-border-radius: 25px !important;
-ms-border-radius: 25px !important;
border-radius: 25px !important;
}
a.btn_1.outline,
.btn_1.outline {
border: 2px solid #3f9fff;
color: #3f9fff;
padding: 11px 40px;
background: none;
}
a.btn_1.outline:hover,
.btn_1.outline:hover {
background: #0054a6;
color: #fff;
border-color: #0054a6;
}

a.btn_explore {
background: #fff;
display: block;
width: 60px;
height: 60px;
-webkit-border-radius: 50%;
-moz-border-radius: 50%;
-ms-border-radius: 50%;
border-radius: 50%;
line-height: 65px;
text-align: center;
position: absolute;
bottom: 40px;
left: 50%;
margin-left: -30px;
font-size: 24px;
font-size: 1.5rem;
-moz-transition: all 0.3s ease-in-out;
-o-transition: all 0.3s ease-in-out;
-webkit-transition: all 0.3s ease-in-out;
-ms-transition: all 0.3s ease-in-out;
transition: all 0.3s ease-in-out;
}
a.btn_explore:hover {
bottom: 30px;
}