.form-row {
  margin-bottom: 14px;
}

label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  color: #222;
  font-size: 14px;
}

input[type="text"],
input[type="email"],
input[type="password"],
select,
textarea {
  width: 100%;
  padding: 13px 14px;
  border-radius: 10px;
  border: 1px solid #e6e6e6;
  background: #ffffff;
  font-size: 15px;
  outline: none;
}

input:focus {
  border-color: #e0e0e0;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.06);
}

.btn {
  display: inline-block;
  width: 100%;
  padding: 14px 18px;
  background: #e70731;
  color: #fff;
  border: none;
  border-radius: 28px;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  text-align: center;
}

.btn:hover {
  filter: brightness(.97);
}