.rul_cornerTL,.rul_cornerTR{border-bottom:1px solid rgba(206,219,236,.5)}.rul_cornerBL,.rul_cornerTL{border-right:1px solid rgba(206,219,236,.5)}.rul_cornerBL,.rul_cornerBR{bottom:1px;border-top:1px solid rgba(206,219,236,.5)}.rul_cornerBR,.rul_cornerTR{right:1px;border-left:1px solid rgba(206,219,236,.5)}.rul_wrapper{position:absolute;height:100%;width:100%;overflow:hidden;pointer-events:none}.rul_corner,.rul_line,.rul_ruler{pointer-events:all;position:absolute}.rul_wrapper *{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;-o-user-select:none;user-select:none}.rul_ruler{display:block;border:1px solid rgba(206,219,236,.5);filter:blur(0);-webkit-filter:blur(0);z-index:1000}.rul_corner{background-color:#fff;z-index:1010;cursor:pointer}.rul_corner:hover{background-color:#d3d3d3}.rul_cornerTL{top:0;left:0}.rul_cornerTR{top:1px}.rul_cornerBL{left:1px}.rul_ruler_Vertical{cursor:ew-resize;border-left:none}.rul_ruler_Horizontal{cursor:ns-resize;border-top:none}.rul_line{color:transparent;background-color:transparent;border-bottom:1px solid #3BB7C7;border-left:1px solid #3BB7C7;z-index:1000}.rul_line_dragged{border:1px dotted #6B7587}.rul_line:hover{border-bottom:1px solid #236E77;border-left:1px solid #236E77}.rul_lineVer{top:0;bottom:0}.rul_lineVer:hover{cursor:ew-resize}.rul_lineHor{right:0;left:0}.rul_lineHor:hover{cursor:ns-resize}.rul_tooltip:after{background:#fff;color:#000;border:1px solid gray;font-size:10px;content:attr(data-tip);top:50%;left:50%;margin-top:1px;margin-left:1px;padding:2px 5px;position:absolute;z-index:10001;min-width:45px}.rul_tracker{height:1px;width:1px;background:#000;position:absolute;pointer-events:none}
@font-face {
  font-family: 'Roboto Condensed';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/robotocondensed/v27/ieVo2ZhZI2eCN5jzbjEETS9weq8-_d6T_POl0fRJeyWyovBJ.ttf) format('truetype');
}
/* BASIC */
html {
  background: #315152;
  background: linear-gradient(319deg, #315152 0%, #08232a 100%, #314b52 100%);
}
body {
  font-family: "Poppins", sans-serif;
  height: 100vh;
}
a {
  color: #92badd;
  display: inline-block;
  text-decoration: none;
  font-weight: 400;
}
h2 {
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  display: inline-block;
  margin: 40px 8px 10px 8px;
  color: #cccccc;
}
/* STRUCTURE */
.wrapper {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  min-height: 100%;
  padding: 20px;
}
#formContent {
  padding: 30px;
  width: 90%;
  max-width: 450px;
  position: relative;
  padding: 0px;
  text-align: center;
}
#formFooter {
  padding: 25px;
  text-align: center;
  border-radius: 0 0 10px 10px;
}
/* TABS */
h2.inactive {
  color: #cccccc;
}
h2.active {
  color: #0d0d0d;
  border-bottom: 2px solid #5fbae9;
}
h1 {
  color: #a62d30;
}
/* FORM TYPOGRAPHY*/
input[type=button],
input[type=submit],
input[type=reset] {
  background-color: #a62d30;
  border: none;
  color: white;
  padding: 15px 80px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  text-transform: uppercase;
  font-size: 13px;
  margin: 5px 20px 40px 20px;
  transition: all 0.3s ease-in-out;
}
input[type=button]:hover,
input[type=submit]:hover,
input[type=reset]:hover {
  background-color: #39ace7;
}
input[type=button]:active,
input[type=submit]:active,
input[type=reset]:active {
  transform: scale(0.95);
}
input[type=text],
input[type=password] {
  background-color: #f6f6f6;
  border: 1px solid #0e8281;
  color: #0d0d0d;
  padding: 15px 15px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 5px;
  width: 85%;
  transition: all 0.5s ease-in-out;
  border-radius: 5px 5px 5px 5px;
}
input[type=text]:focus {
  background-color: #fff;
  border-bottom: 2px solid #5fbae9;
}
input[type=text]:placeholder {
  color: #cccccc;
}
/* ANIMATIONS */
/* Simple CSS3 Fade-in-down Animation */
.fadeInDown {
  animation-name: fadeInDown;
  animation-duration: 1s;
  animation-fill-mode: both;
}
@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
/* Simple CSS3 Fade-in Animation */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fadeIn {
  opacity: 0;
  animation: fadeIn ease-in 1;
  animation-fill-mode: forwards;
  animation-duration: 1s;
}
.fadeIn.first {
  animation-delay: 0.4s;
}
.fadeIn.second {
  animation-delay: 0.6s;
}
.fadeIn.third {
  animation-delay: 0.8s;
}
.fadeIn.fourth {
  animation-delay: 1s;
  cursor: pointer;
}
/* Simple CSS3 Fade-in Animation */
.underlineHover:after {
  display: block;
  left: 0;
  bottom: -10px;
  width: 0;
  height: 2px;
  background-color: #56baed;
  content: "";
  transition: width 0.2s;
}
.underlineHover:hover {
  color: #0d0d0d;
}
.underlineHover:hover:after {
  width: 100%;
}
/* OTHERS */
*:focus {
  outline: none;
}
#icon {
  width: 60%;
}

