    /*--------------------
General Style
---------------------*/
*,
*::before,
*::after {
  box-sizing: border-box;
}

body,
html {
  height: 100%;
  font-family: 'Kanit', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background: rgba(30, 29, 31, 1);
  background: -moz-linear-gradient(-45deg, rgba(30, 29, 31, 1) 0%, #005493 100%);
  background: -webkit-gradient(left top, right bottom, color-stop(0%, rgba(30, 29, 31, 1)), color-stop(100%, #005493));
  background: -webkit-linear-gradient(-45deg, rgba(30, 29, 31, 1) 0%, #005493 100%);
  background: -o-linear-gradient(-45deg, rgba(30, 29, 31, 1) 0%, #005493 100%);
  background: -ms-linear-gradient(-45deg, rgba(30, 29, 31, 1) 0%, #005493 100%);
  background: linear-gradient(135deg, rgba(30, 29, 31, 1) 0%, #005493 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#1e1d1f', endColorstr='#df405a', GradientType=1);
}

/*--------------------
Text
---------------------*/

h2,
h3 {
  font-size: 16px;
  letter-spacing: -1px;
  line-height: 20px;
}

h2 {
  color: #747474;
  text-align: center;
}

h3 {
  color: #032942;
  text-align: right;
}

/*--------------------
Icons
---------------------*/
.i {
  width: 20px;
  height: 20px;
}



/*--------------------
Login Box
---------------------*/




@media only screen and (max-width: 600px) {

  .box {
    width: 330px;
    position: absolute;
    top: 50%;
  }

}






@media only screen and (min-width: 601px) {

  .box {
    width: 330px;
    position: absolute;
    top: 50%;
  }

}

.box-form {
  width: 270px;
  position: relative;
  z-index: 1;
}

.box-login-tab {
  width: 50%;
  height: 40px;
  background: #fdfdfd;
  position: relative;
  float: left;
  z-index: 1;

  -webkit-border-radius: 6px 6px 0 0;
  -moz-border-radius: 6px 6px 0 0;
  border-radius: 6px 6px 0 0;

  -webkit-transform: perspective(5px) rotateX(0.93deg) translateZ(-1px);
  transform: perspective(5px) rotateX(0.93deg) translateZ(-1px);
  -webkit-transform-origin: 0 0;
  transform-origin: 0 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;

  -webkit-box-shadow: 15px -15px 30px rgba(0, 0, 0, 0.32);
  -moz-box-shadow: 15px -15px 30px rgba(0, 0, 0, 0.32);
  box-shadow: 15px -15px 30px rgba(0, 0, 0, 0.32);
}

.box-login-title {
  width: 35%;
  height: 40px;
  position: absolute;
  float: left;
  z-index: 2;
}

.box-login {
  position: relative;
  top: -4px;
  width: 320px;
  background: #fdfdfd;
  text-align: center;
  overflow: hidden;
  z-index: 2;

  -webkit-border-top-right-radius: 6px;
  -webkit-border-bottom-left-radius: 6px;
  -webkit-border-bottom-right-radius: 6px;
  -moz-border-radius-topright: 6px;
  -moz-border-radius-bottomleft: 6px;
  -moz-border-radius-bottomright: 6px;
  border-top-right-radius: 6px;
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;

  -webkit-box-shadow: 15px 30px 30px rgba(0, 0, 0, 0.32);
  -moz-box-shadow: 15px 30px 30px rgba(0, 0, 0, 0.32);
  box-shadow: 15px 30px 30px rgba(0, 0, 0, 0.32);
}

.box-info {
  width: 260px;
  top: 60px;
  position: absolute;
  right: -5px;
  padding: 15px 15px 15px 30px;
  background-color: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.2);
  z-index: 0;

  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;

  -webkit-box-shadow: 15px 30px 30px rgba(0, 0, 0, 0.32);
  -moz-box-shadow: 15px 30px 30px rgba(0, 0, 0, 0.32);
  box-shadow: 15px 30px 30px rgba(0, 0, 0, 0.32);
}

.line-wh {
  width: 100%;
  height: 1px;
  top: 0px;
  margin: 12px auto;
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
}

/*--------------------
Form
---------------------*/

a {
  text-decoration: none;
}

button:focus {
  outline: 0;
}

.b {
  height: 24px;
  line-height: 24px;
  background-color: transparent;
  border: none;
  cursor: pointer;
}

.b-form {
  opacity: 0.5;
  margin: 10px 20px;
  float: right;
}

.b-info {
  opacity: 0.5;
  float: left;
}

.b-form:hover,
.b-info:hover {
  opacity: 1;
}

.b-support,
.b-cta {
  width: 100%;
  padding: 0px 15px;
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  letter-spacing: -1px;
  font-size: 16px;
  line-height: 32px;
  cursor: pointer;

  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
  border-radius: 16px;
}

.b-support {
  border: #005493 1px solid;
  background-color: transparent;
  color: #005493;
  margin: 6px 0;
}

.b-cta {
  border: #df405a 1px solid;
  background-color: #df405a;
  color: #fff;
}

.b-support:hover,
.b-cta:hover {
  color: #fff;
  background-color: #005493;
  border: #005493 1px solid;
}

.fieldset-body {
  display: table;
}

.fieldset-body p {
  width: 100%;
  display: inline-table;
  padding: 5px 20px;
  margin-bottom: 2px;
}

label {
  float: left;
  width: 100%;
  top: 0px;
  color: #032942;
  font-size: 13px;
  font-weight: 700;
  text-align: left;
  line-height: 1.5;
}

label.checkbox {
  float: left;
  padding: 5px 20px;
  line-height: 1.7;
}

input[type=text],
input[type=password] {
  width: 100%;
  height: 32px;
  padding: 0px 10px;
  background-color: rgba(0, 0, 0, 0.03);
  border: none;
  display: inline;
  color: #303030;
  font-size: 16px;
  font-weight: 400;
  float: left;

  -webkit-box-shadow: inset 1px 1px 0px rgba(0, 0, 0, 0.05), 1px 1px 0px rgba(255, 255, 255, 1);
  -moz-box-shadow: inset 1px 1px 0px rgba(0, 0, 0, 0.05), 1px 1px 0px rgba(255, 255, 255, 1);
  box-shadow: inset 1px 1px 0px rgba(0, 0, 0, 0.05), 1px 1px 0px rgba(255, 255, 255, 1);
}

input[type=text]:focus,
input[type=password]:focus {
  background-color: #f8f8c6;
  outline: none;
}

input[type=submit] {
  width: 100%;
  height: 39px;
  padding: 0px 20px;
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: #fff;
  line-height: 40px;
  text-align: center;
  background-color: #005493;
  border: 1px #005493 solid;
  opacity: 1;
  cursor: pointer;
}

input[type=submit]:hover {
  background-color: #4f87b1;
  border: 1px #4f87b1 solid;
}

input[type=submit]:focus {
  outline: none;
}

p.field span.i {
  width: 24px;
  height: 24px;
  float: right;
  position: relative;
  margin-top: -26px;
  right: 2px;
  z-index: 2;
  display: none;

  -webkit-animation: bounceIn 0.6s linear;
  -moz-animation: bounceIn 0.6s linear;
  -o-animation: bounceIn 0.6s linear;
  animation: bounceIn 0.6s linear;
}

/*--------------------
Transitions
---------------------*/

.box-form,
.box-info,
.b,
.b-support,
.b-cta,
input[type=submit],
p.field span.i {

  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

/*--------------------
Credits
---------------------*/

.icon-credits {
  width: 100%;
  position: absolute;
  bottom: 4px;
  font-family: 'Open Sans', 'Helvetica Neue', Helvetica, sans-serif;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.1);
  text-align: center;
  z-index: -1;
}

.icon-credits a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.2);
}

#header-section {
  display: none;
}