.centro {
  text-align: center;
}

.titulo {
  color: #96ca59;
  font-weight: bold;
}

.login-page {
  width: 360px;
  padding: 3% 0 0;
  margin: auto;
}

.form {
  position: relative;
  z-index: 1;
  background: #ffffff;
  max-width: 360px;
  margin: 0 auto 100px;
  padding: 25px;

  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.2), 0 5px 5px 0 rgba(0, 0, 0, 0.24);
}

.form input {
  outline: 0;
  background: #f2f2f2;
  width: 100%;
  border: 0;
  margin: 0 0 15px;
  padding: 15px;
  box-sizing: border-box;
  font-size: 14px;
}

.form .input-group .form-control {
  height: 48px;
  padding-top: 14px;
  padding-bottom: 14px;
}

.form button {
  text-transform: uppercase;
  outline: 0;
  background: #c8e3a1;
  width: 100%;
  border: 0;
  padding: 15px;
  color: #ffffff;
  font-size: 14px;
  -webkit-transition: background 0.2s ease, opacity 0.2s ease;
  transition: background 0.2s ease, opacity 0.2s ease;
  cursor: not-allowed;
}

.form button:not(:disabled) {
  background: #96ca59;
  opacity: 1;
  cursor: pointer;
}

.form .message {
  margin: 8px 0 0;
  color: #b3b3b3;
  font-size: 12px;
  text-align: center;
}

.form .message + .message {
  margin-top: 6px;
}
.form .message a {
  color: #304e93;
  text-decoration: none;
}

.form .message a:hover {
  color: #96ca59;
  text-decoration: none;
}
