html, body {
    margin:0px;
    padding:0px;
    font-family: 'Source Sans Pro';
    background-color: #d2d6de;
    font-size: 14px;
}

.wrapper {
    width: 100%;
    max-width: 360px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 10% auto 0;
}

.inner_wrapper {
    background-color: #ffffff;
    padding:20px;
    width: 100%;
}

.desc {
    font-weight: 600;
    text-align: center;
    display: block;
    color: #595d66;
}

.log_icon_container {
    padding: 0px 10px;
    border: 1px solid #a7a7a7;
}

.log_icon {
    font-size: 16px;
    color: #727274;
}

.log_input {
    display: block;
    padding: 5px 10px;
    margin: 0px;
    border: 1px solid #a7a7a7;
    border-radius: 0px;
    outline: none;
    color: #464950;
}

.form_errors, .form_success {
    display: block;
    padding-top: 2px;
    color: #cf0000;
}

.form_success {
    color: green!important;
}

/*general button*/
.bbtn{
  display: inline-block;
  position: relative;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  background: #0057A0;
}

button span {
  display: block;
  padding: 5px;
}
.bbtn::before,
.bbtn::after {
  content: "";
  width: 0;
  height: 2px;
  position: absolute;
  transition: all 0.1s linear;
  background: #00b0ff;
}

span::before,
span::after {
  content: "";
  width: 2px;
  height: 0;
  position: absolute;
  transition: all 0.1s linear;
  background: #00b0ff;
}
.bbtn:hover::before,
.bbtn:hover::after {
  width: 100%;
}
.bbtn:hover span::before,
.bbtn:hover span::after {
  height: 100%;
}

/*----- button 6 -----*/
.btn-6::before {
  left: 50%;
  top: 0;
  transition-duration: 0.2s;
}
.btn-6::after {
  left: 50%;
  bottom: 0;
  transition-duration: 0.2s;
}
.btn-6 span::before {
  left: 0;
  top: 50%;
  transition-duration: 0.2s;
}
.btn-6 span::after {
  right: 0;
  top: 50%;
  transition-duration: 0.2s;
}
.btn-6:hover::before,
.btn-6:hover::after {
  left: 0;
}
.btn-6:hover span::before,
.btn-6:hover span::after {
  top: 0;
}
/*general button end*/

a {
    text-decoration: none;
    color: #1d57a0;
    font-weight: 600;
    position: relative;
    transition: all 0.2s linear;
}

a:after {
    content: "";
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 1px;
    bottom: -4px;
    left: 0;
    background-color: #0057A0;
    transform-origin: bottom right;
    transition: transform 0.2s ease-out;
}

a:hover {
    color: #2d76e1;
    padding: 0px 5px;
}

a:hover:after {
    transform: scaleX(1);
    transform-origin: bottom left;
}