@import url(https://fonts.googleapis.com/css?family=Roboto:400,500,100);
*,
*:after,
*:before {
  box-sizing: border-box;
}

html {
  position: relative;
  font-family: "Roboto", sans-serif;
  height: 100vh;
}

body{
  background: linear-gradient(188deg, rgba(255, 131, 0, 1) 31%, rgba(255, 164, 69, 1) 63%, rgba(255, 225, 193, 1) 100%);
  height: 90vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo-wrapper{
    width: 100%;
    text-align: center;
    margin-bottom: 30px;
}
.login-logo{
    max-width: 91%;
}

.icon-lock {
  position: relative;
  width: 80px;
  height: 60px;
  background: #ffa000;
  margin: auto;
  -webkit-transform: translateY(60px);
  transform: translateY(60px);
  border-radius: 8px;
  box-shadow: 0 0 2px #F57C00 inset;
}
.icon-lock:after {
  content: "";
  position: absolute;
  width: 50px;
  height: 35px;
  border: 9px solid #f57c00;
  border-bottom: none;
  bottom: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  border-top-left-radius: 50px;
  border-top-right-radius: 50px;
}
.icon-lock:before {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  background-color: #efefef;
  left: 50%;
  top: 20px;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  border-radius: 100%;
}

.panel-lite {
  margin: 20px auto;
  width: 400px;
  max-width: 90%;;
  background: #fff;
  padding: 10px;
  border-radius: 4px;
  position: relative;
}
.panel-lite h4 {
  font-weight: 400;
  font-size: 24px;
  text-align: center;
  color: #FF8300;
  margin: 15px auto;
}
.panel-lite a {
  display: inline-block;
  margin-top: 15px;
  text-decoration: none;
  color: #333;
  font-size: 12px;
}

.form-group {
  position: relative;
  font-size: 15px;
  color: #666;
}
.form-group + .form-group {
  margin-top: 30px;
}
.form-group .form-label {
  position: absolute;
  z-index: 1;
  left: 0;
  top: 5px;
  transition: 0.3s;
}
.form-group .form-control {
  width: 100%;
  position: relative;
  z-index: 3;
  height: 35px;
  background: none;
  border: none;
  padding: 5px 0;
  transition: 0.3s;
  border-bottom: 1px solid #777;
}
.form-group .form-control:invalid {
  outline: none;
}
.form-group .form-control:focus, .form-group .form-control:valid {
  outline: none;
  color: #666;
  box-shadow: 0 1px #FF8300;
  border-color: #FF8300;
}
.form-group .form-control:focus + .form-label, .form-group .form-control:valid + .form-label {
  font-size: 12px;
  -webkit-transform: translateY(-15px);
  transform: translateY(-15px);
}

.floating-btn {
  background: #FF8300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  font-size: 32px;
  border: none;
  position: absolute;
  margin: auto;
  transition: 0.3s;
  box-shadow: 1px 0px 0px rgba(0, 0, 0, 0.3) inset;
  margin: auto;
  right: 30px;
  bottom: 25px;
  cursor: pointer;
}
.floating-btn:hover {
  box-shadow: 0 0 0 rgba(0, 0, 0, 0.3) inset, 0 3px 6px rgba(0, 0, 0, 0.16), 0 5px 11px rgba(0, 0, 0, 0.23);
}
.floating-btn:hover .icon-arrow {
  -webkit-transform: rotate(45deg) scale(1.2);
  transform: rotate(45deg) scale(1.2);
}
.floating-btn:focus, .floating-btn:active {
  outline: none;
}

.icon-arrow {
  position: relative;
  width: 13px;
  height: 13px;
  border-right: 3px solid #fff;
  border-top: 3px solid #fff;
  display: block;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  margin: auto;
  transition: 0.3s;
}
.icon-arrow:after {
  content: "";
  position: absolute;
  width: 18px;
  height: 3px;
  background: #fff;
  left: -5px;
  top: 5px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.login-wrapper{
  background: #ffffff;
  display: flex;
  flex-direction: column;
  margin: 20px;
  border-radius: 10px;
}
.esquema{
  background: #002F3B;
  padding: 30px 20px 20px;
  order: 2;
  text-align: center;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}
.form{
  order: 1;
}

.form button{
    background: #FF8300;
    border: none;
    width: 100%;
    padding: 10px;
    border-radius: 30px;
    margin-top: 20px;
    font-weight: bold;
    color: #fff;
    text-transform: uppercase;
    padding: 20px;
}
.form button:hover{
  background: #002F3B;
  cursor: pointer;
}

.form button:active{
  background: #005368;
}

@media only screen and (min-width: 769px) {
  .esquema{
    order: 1;
    border-radius: 10px;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .form{
    order: 2;
  }
  .login-wrapper{
    background: #ffffff;
    display: grid;
    flex-direction: row;
    margin: 30px;
    margin-left: auto;
    margin-right: auto;
    max-width: 700px;
    grid-template-columns: repeat(2, 50%)
  }
  .logo-wrapper{
    margin-bottom: 50px;
  }
  .form button{
    margin-top: 40px;
  }
}

@media only screen and (min-width: 991px) {
  .form{
    padding: 50px 20px;
  }
  .login-wrapper{
    background: #ffffff;
    display: grid;
    flex-direction: row;
    margin: 30px;
    margin-left: auto;
    margin-right: auto;
    min-width: 940px;
    grid-template-columns: repeat(2, 50%)
  }
}