.account-form {
  width: 100%;
  max-width: 450px;
  margin: 0 auto;
  background: #e7ecf5;
  padding: 40px 30px;
  border-radius: 30px;
  display: flex;
  flex-direction: column;
}

.account-form a {
  color: #bb914a;
}

.form-header {
  font-size: 1.5rem;
  font-weight: 400;
  text-align: center;
  color: #000d28c0;
  margin-bottom: 15px;
}

.already {
  font-size: .9rem;
  font-weight: 400;
  text-align: center;
  color: #09120a;
  margin-bottom: 50px;
}

.already a{
  margin-left: 10px;
}

.terms {
  font-size: .75rem;
  font-weight: 400;
  color: #09120a;
  margin-bottom: 50px;
}

.account-form label {
  font-size: .8rem;
}


input[type=text], select, textarea, input[type=email], input[type=number]
,input[type=password] {
  width: 100%;
  padding: 16px 12px; 
  border: 1px solid rgba(0, 0, 0, 0.4);
  border-radius: 4px;
  margin-top: 6px;
  margin-bottom: 16px;
  resize: vertical;
  background: #ffffff84;
}

.account-form button {
  background: #bb914a;
  color: white;
  padding: 14px 30px;
  border-radius: 30px;
  font-size: .9rem;
  align-self: center;
  transition: all .3s ease;
}

.account-form button:hover {
  background: #382b13;
}

