.container-form-principal {
  width: 100%;
  margin: 0 auto;
}

.container-form-box {
  width: 100%;  
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;  
  z-index: 1;  
}

.container-form-box::before {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(255,255,255,0.9);
}

.form-box {
  width: 500px;
  height: 80%;
  border-radius: 10px;
  overflow: hidden;
  padding: 32px 48px 20px 48px;
  margin-top: 8em;
  margin-bottom: 3em;
  background: #f8961e;
  background: -webkit-linear-gradient(top, #f9c74f, #f9844a);
  background: -o-linear-gradient(top, #f9c74f, #f9844a);
  background: -moz-linear-gradient(top, #f9c74f, #f9844a);
  background: linear-gradient(to top, #f9c74f, #f9844a);

  box-shadow: 10px 10px 44px 0px rgba(0,0,0,0.75);  
}

.form-box-logo {
  font-size: 60px; 
  color: #333333;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  align-items: center;
  width: auto;
  height: auto; 
  
  margin: 0 auto;
}

img.form-box-logo{
  width: 170px;
}

.form-box-titulo{
  font-family: Raleway-Medium;
  font-size: 30px;
  color: #fff;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
  display: block;
  padding-bottom: 20px;
  padding-top: 15px;
}

.form-box-input-box {
  width: 100%;
  position: relative;
  border-bottom: 2px solid rgba(255,255,255,0.24);
  margin-bottom: 30px;
}

.form-box-input {
  font-family: Raleway-Regular;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  line-height: 1.2;

  display: block;
  width: 100%;
  height: 45px;
  background: transparent;
  padding: 0 5px 0 38px;
}

.form-box-input-focus {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
}

.form-box-input-focus::before {
  content: "";
  display: block;
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;

  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;

  background: #fff;
}

.form-box-input-focus::after {
  font-family: Material-Design-Iconic-Font;
  font-size: 22px;
  color: #fff;

  content: attr(data-placeholder);
  display: block;
  width: 100%;
  position: absolute;
  top: 6px;
  left: 0px;
  padding-left: 5px;

  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
}

.form-box-input:focus {
  padding-left: 5px;
}

.form-box-input:focus + .form-box-input-focus::after {
  top: -22px;
  font-size: 18px;
}

.form-box-input:focus + .form-box-input-focus::before {
  width: 100%;
}

.has-val.form-box-input + .form-box-input-focus::after {
  top: -22px;
  font-size: 18px;
}

.has-val.form-box-input + .form-box-input-focus::before {
  width: 100%;
}

.has-val.form-box-input {
  padding-left: 5px;
}

.form-checkbox-box { 
  padding-left: 5px;
  padding-top: 0em;
  padding-bottom: 1.7rem;
}

p.senha{
  padding-top: 1.8em;
  color: rgba(0, 132, 255, 0.993);
}
a.senha{
  text-decoration: none;
  color: rgba(0, 132, 255, 0.993);
}

.form-checkbox-box-input {
  display: none;
}

.form-checkbox-box-input-label {
  font-family: Raleway-Regular;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  line-height: 1.2;

  display: block;
  position: relative;
  padding-left: 26px;
  cursor: pointer;
}

.form-checkbox-box-input-label::before {
  content: "\f26b";
  font-family: Material-Design-Iconic-Font;
  font-size: 13px;
  color: transparent;

  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 2px;
  background: #fff;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}

.form-checkbox-box-input:checked + .form-checkbox-box-input-label::before {
  color: #555555;
}

.form-button-box {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 1em;
  margin-bottom: 1em;
}

.form-button-box-submit {
  font-family: Raleway-Medium;
  font-size: 16px;
  font-weight: 600;
  color: #555555;
  line-height: 1.2;

  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 20px;
  width: 14em;
  height: 50px;
  border-radius: 25px;
  box-shadow: 0px 4px 15px 0px rgba(74,74,74,0.49);

  background: #f8961e;
  background: -webkit-linear-gradient(top, #f9c74f, #f9844a);
  background: -o-linear-gradient(top, #f9c74f, #f9844a);
  background: -moz-linear-gradient(top, #f9c74f, #f9844a);
  background: linear-gradient(top, #f9c74f, #f9844a);
  position: relative;
  z-index: 1;

  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
}

.form-button-box-submit::before {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 100%;
  border-radius: 25px;
  background-color: #fff;
  top: 0;
  left: 0;
  opacity: 1;

  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
}

.form-button-box-submit:hover {
  color: #fff;
}

.form-button-box-submit:hover:before {
  opacity: 0;
}

.form-box-forgot-pss-box {
  display: flex;
  justify-content: center;
  padding-top: 30px;
  text-align: center;
  margin-top: 20px;
  
}
.form-box-forgot-pss {
  font-family: Raleway-Regular;
  color: #e5e5e5;
  line-height: 1.5;
  align-items: center;
  font-family: Raleway-Regular;
  font-size: 13px;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
}

.form-box-forgot-pss:hover {
  color: #f9c74f;
}

.form-box-register-box {
  text-align: center;
  margin-top: 15px;
}

.form-box-register {
  font-family: Raleway-Regular;
  font-size: 14px;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}

.form-box-register:hover {
  color: #f9c74f;
  border-bottom-color: #f9c74f;
}

.form-button-sso {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 1em;
  
}

.form-button-sso-submit {
  font-family: Raleway-Medium;
  font-size: 16px;
  font-weight: 600;
  color: #555555;
  text-decoration: none;
  line-height: 1.2;

  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 20px;
  width: 14em;
  height: 50px;
  border-radius: 25px;
  box-shadow: 0px 4px 15px 0px rgba(74,74,74,0.49);

  background: #f8961e;
  background: -webkit-linear-gradient(top, #f9c74f, #f9844a);
  background: -o-linear-gradient(top, #f9c74f, #f9844a);
  background: -moz-linear-gradient(top, #f9c74f, #f9844a);
  background: linear-gradient(top, #f9c74f, #f9844a);
  position: relative;
  z-index: 1;

  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
  background: #fff;
  cursor: pointer;
  text-align: center;
}

.form-button-sso-submit::before {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 100%;
  border-radius: 25px;
  background-color: #fff;
  top: 0;
  left: 0;
  opacity: 1;

  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
}

.form-button-sso-submit:hover {
  color: #fff;
  background: -webkit-linear-gradient(top, #f9c74f, #f9844a);
  background: -o-linear-gradient(top, #f9c74f, #f9844a);
  background: -moz-linear-gradient(top, #f9c74f, #f9844a);
}

.form-button-sso-submit:hover:before {
  opacity: 0;
  color: #fff;
}

.form-sso-forgot-pss-box {
  display: flex;
  justify-content: center;
  padding-top: 30px;
  text-align: center;
  margin-top: 20px;
}
.form-sso-forgot-pss {
  font-family: Raleway-Regular;
  color: #e5e5e5;
  line-height: 1.5;
  align-items: center;
  font-family: Raleway-Regular;
  font-size: 13px;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
}
.form-sso-forgot-pss:hover {
  color: #f9c74f;
}

.form-sso-register-box {
  text-align: center;
  margin-top: 15px;
}
.form-sso-register {
  font-family: Raleway-Regular;
  font-size: 14px;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}
.form-sso-register:hover {
  color: #f9c74f;
  border-bottom-color: #f9c74f;
}
a.sso{
  display: flex;
  text-decoration: none;
  color: black;
}
a.sso:hover{
  color: #fff;
}


div.suspenso2{
  display: flex;
  width: 2em;
  height: 2em;
  border-radius: 10em;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin-top: .6em;
  margin-left: .1em;
  opacity: 40%;
}

img.suspenso2{
  width: .8em;
  display: flex;
}










