*, *:before, *:after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  font-size: 62.5%;
  height: 100%;
  overflow: hidden;
}

@media (max-width: 768px) {
  html, body {
    font-size: 50%;
  }
}

svg {
  display: inline-block;
  width: 2rem;
  height: 2rem;
  overflow: visible !important;
}

.svg-icon {
  cursor: pointer;
}

.svg-icon path {
  stroke: rgba(255, 255, 255, 0.9);
  fill: none;
  stroke-width: 1;
}

input, button {
  outline: none;
  border: none;
}

.wrapper {
  position: relative;
  height: 100%;
  overflow: auto;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
}

.container {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -15rem;
  margin-top: -29rem;
  width: 30rem;
  height: 52rem;
  overflow: hidden;
  padding: 0;
}

.login {
  position: relative;
  height: 100%;
  background: rgba(0,0,0,0.8);
  border: 2px solid #333;
  -webkit-transition: opacity 0.1s, -webkit-transform 0.3s cubic-bezier(0.17, -0.65, 0.665, 1.25);
  transition: opacity 0.1s, -webkit-transform 0.3s cubic-bezier(0.17, -0.65, 0.665, 1.25);
  transition: opacity 0.1s, transform 0.3s cubic-bezier(0.17, -0.65, 0.665, 1.25);
  transition: opacity 0.1s, transform 0.3s cubic-bezier(0.17, -0.65, 0.665, 1.25), -webkit-transform 0.3s cubic-bezier(0.17, -0.65, 0.665, 1.25);
  -webkit-transform: scale(1);
          transform: scale(1);
}

.login.inactive {
  opacity: 0;
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.login__logo {
  position: relative;
  width: 100%;
  padding: 10%;
  height: auto;
  text-align: center;
}

.login__form {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 1.5rem 2.5rem;
  text-align: center;
}

.login__row {
  height: 5rem;
  padding-top: 1rem;
  position: relative;
}

.login__input:active, .login__input:focus {
	border-bottom: 2px solid #2c6eb5;
}

.check__row {
  color: #ddd;
  font-size: 12px;
  margin-top: 2rem;
}

.login__icon {
  margin-bottom: -1.2rem;
  margin-right: 0.5rem;
}

.login__input {
  display: inline-block;
  width: 21rem;
  height: 100%;
  padding-left: 1.5rem;
  font-size: 1.5rem;
  background: transparent;
  color: #FDFCFD;
  border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    border-bottom: 2px solid #2c6eb5;
}

.login__submit {
  position: relative;
  width: 100%;
  height: 4rem;
  margin: 5rem 0 2.2rem;
  color: rgba(255, 255, 255, 0.8);
  background: #2c6eb5;
  font-size: 1.5rem;
  border-radius: 3rem;
  cursor: pointer;
  overflow: hidden;
  -webkit-transition: width 0.3s 0.15s, font-size 0.1s 0.15s;
  transition: width 0.3s 0.15s, font-size 0.1s 0.15s;
}

.login__submit:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -1.5rem;
  margin-top: -1.5rem;
  width: 3rem;
  height: 3rem;
  border: 2px dotted #fff;
  border-radius: 50%;
  border-left: none;
  border-bottom: none;
  -webkit-transition: opacity 0.1s 0.4s;
  transition: opacity 0.1s 0.4s;
  opacity: 0;
}

.login__submit.processing {
  width: 4rem;
  font-size: 0;
}

.login__submit.processing:after {
  opacity: 1;
  -webkit-animation: rotate 0.5s 0.4s infinite linear;
          animation: rotate 0.5s 0.4s infinite linear;
}

.login__submit.success {
  -webkit-transition: opacity 0.1s 0.3s, background-color 0.1s 0.3s, -webkit-transform 0.3s 0.1s ease-out;
  transition: opacity 0.1s 0.3s, background-color 0.1s 0.3s, -webkit-transform 0.3s 0.1s ease-out;
  transition: transform 0.3s 0.1s ease-out, opacity 0.1s 0.3s, background-color 0.1s 0.3s;
  transition: transform 0.3s 0.1s ease-out, opacity 0.1s 0.3s, background-color 0.1s 0.3s, -webkit-transform 0.3s 0.1s ease-out;
  -webkit-transform: scale(30);
          transform: scale(30);
  opacity: 0.9;
}

.login__submit.success:after {
  -webkit-transition: opacity 0.1s 0s;
  transition: opacity 0.1s 0s;
  opacity: 0;
  -webkit-animation: none;
          animation: none;
}

.login__signup {
  font-size: 1.2rem;
  color: #ABA8AE;
  margin: 0;
}

.login__signup a,
.login__signup a:hover {
  color: #fff;
  cursor: pointer;
  text-decoration: none;
}

.ripple {
  position: absolute;
  width: 15rem;
  height: 15rem;
  margin-left: -7.5rem;
  margin-top: -7.5rem;
  background: rgba(0, 0, 0, 0.4);
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-animation: animRipple 0.4s;
          animation: animRipple 0.4s;
  border-radius: 50%;
}

.copyright {
	position: absolute;
	bottom: 0;
	padding: 10px 0;
	width: 100%;
	font-size: 12px;
	background: rgba(255,255,255,0.6);
	text-align: center;
	font-family: "Open Sans", Helvetica, Arial, sans-serif;
}

.copyright a {
	color: #333;
}

@-webkit-keyframes animRipple {
  to {
    -webkit-transform: scale(3.5);
            transform: scale(3.5);
    opacity: 0;
  }
}

@keyframes animRipple {
  to {
    -webkit-transform: scale(3.5);
            transform: scale(3.5);
    opacity: 0;
  }
}
@-webkit-keyframes rotate {
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@keyframes rotate {
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@-webkit-keyframes animatePath {
  to {
    stroke-dashoffset: 0;
  }
}
@keyframes animatePath {
  to {
    stroke-dashoffset: 0;
  }
}

.squaredFour {
  width: 15px;
  position: relative;
  display: inline-block;
  margin-right: 3px;
}

.squaredFour span {
  width: 15px;
  height: 15px;
  cursor: pointer;
  position: absolute;
  top: 0;
  left: 0;
  background: #fcfff4;
}

.squaredFour span:after {
  content: '';
  width: 8px;
  height: 5px;
  position: absolute;
  top: 2px;
  left: 2px;
  border: 3px solid #333;
  border-top: none;
  border-right: none;
  box-sizing: content-box;
  background: transparent;
  opacity: 0;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.squaredFour label:hover::after {
  opacity: 0.5;
}

.squaredFour input[type=checkbox] {
  visibility: hidden;
  
}

.squaredFour input[type=checkbox]:checked + span:after {
  opacity: 1;
}

.company_logo {
  padding-bottom: 20px;
  border-bottom: 2px solid rgba(255, 255, 255, 0.2);
  display: inline-block;
}

.workline_logo {
  display: inline-block;
  padding-top: 20px;
}

.pad-top-none {
	padding-top: 0;
}

.pad-bot-none {
	padding-bottom: 0;
}

.white {
	background: #fff;
	background: rgba(255,255,255,0.9);
}

.black {
	background: #000;
	background: rgba(0,0,0,0.9);
}

.alert {
    padding: 10px;
    border: none;
    border-radius: 0;
}

.alert-danger {
    color: #a94442;
    background-color: #fff;
    font-size: 12px;
}