.app-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-image: url('/assets/imagens/bg-converts.jpg');
  background-repeat: repeat-x;
  background-size: auto 180%;
  animation: moveBackground 15s linear infinite alternate;
  z-index: -1;
}

@keyframes moveBackground {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 100% 0;
  }
}

.header-branding {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}

.header-branding>img {
  width: 100px;
  height: 100px;
  margin-left: -23px;
}

.app-title {
  margin-top: 20px;
  color: white;
  font-size: 40px;
  font-weight: 400;
}

.form-title {
  color: #0C2447;
  font-size: 25px;
  text-align: center;
  margin-bottom: 5px;
}

.form-subtitle {
  color: #5d666d;
  font-size: 14px;
  text-align: center;
}

.form {
  background-color: #CCD6D8 !important;
  width: 450px;
  height: 370px;
  border-radius: 7px;
  border: 1px solid #303F4D;
}

@media (max-width: 480px) {
  .form {
    width: 90vw;      
    height: auto;    
  }
}

.form-error {
  height: 410px;
}

.form>form {
  padding: 30px;
}

.form-header {
  width: 100%;
  height: 5px;
  border-radius: 30px 30px 0px 0px;
  background: linear-gradient(to right, rgb(0, 162, 138), rgb(3, 54, 83));
}

.form-group {
  margin-bottom: 17px;
  cursor: pointer;
}

.form-group>label {
  color: #080808;
  margin-bottom: 3px;
}

.form-group>input {
  width: 100%;
  height: 45px;
  border-radius: 7px;
  padding: 4px;
  background-color: #DADEE1;
  border: 1px solid #303F4D;
}

.input>input:focus,
.input-icon-group input:focus {
  outline: none;
  box-shadow: none;
  border-width: 2px;
  border-color: #00AD99;
}

.input-icon-group {
  position: relative;
  display: flex;
  align-items: center;
}

.input-icon-group .input-icon {
  position: absolute;
  left: 12px;
  color: #6EC7B4;
  pointer-events: none;
  width: 19px;
  height: 19px;
}

.input-icon-group input {
  width: 100%;
  height: 45px;
  border-radius: 7px;
  padding: 4px 4px 4px 40px;
  background-color: #DADEE1;
  border: 2px solid #b2bfca;
  color: #000000;
}

.input-error input {
  border: 2px solid rgb(211, 48, 48) !important;
}

.error-message {
  font-size: 14px;
  text-align: center;
  color: rgb(211, 48, 48);
  margin-top: 2px;
}

.error-message>a {
  font-weight: bold;
}

.form-button {
  background-color: #008570;
  border-radius: 7px;
  padding: 12px;
  text-align: center;
  width: 100%;
  border: none;
  color: white;
  cursor: pointer;
  margin-top: 7px;
  outline: none;
  transition: background-color 0.3s ease;
}

.form-button:hover,
.form-button:focus {
  background-color: #006b54;
  outline: none;
  box-shadow: 0 0 4px #00ad99;
}

.forgot-password-text {
  margin-top: 20px;
  text-align: center;
  color: #006b54;
  cursor: pointer;
}

/* Cor do placeholder */
.form-group>input::placeholder,
.input-icon-group input::placeholder {
  color: #74808a;
  opacity: 1;
}

.form-group>input:-ms-input-placeholder,
.input-icon-group input:-ms-input-placeholder {
  color: rgb(229, 221, 221);
}

/* Remove setas nativas no input number */
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
}