* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.form-register {
  width: 1000px;
  background:#ebebeb;
  padding: 30px;
  margin:auto;
  margin-top: 20px;
  margin-bottom: 60px;
  border-radius: 20px;
  font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: white;
  box-shadow: 7px 13px 37px #000;
}

.form-register h1 {
  font-size: 30px;
  margin-bottom: 20 px;
}

label {
  display: block;
  margin-bottom: 5px;
  color: black;
}

.controls {
  width: 100%;
  background: #c5c5c5;
  padding: 10px;
  border-radius: 20px;
  margin-bottom: 16px;
  border: 1px solid #4ec51f;
  font-family:Arial, Helvetica, sans-serif;
  font-size: 14px;
}

.form-register p {
  height: 40px;
  text-align: center;
  font-size: 16px;
  color: #000000;
  line-height: 40px;
}

.form-register a {
  color: #000000;
  text-decoration: none;
}

.form-register a:hover {
  color: rgb(49, 207, 10);
  text-decoration: underline;
}

.form-register .botons {
  width: 100%;
  background: #4ec51f;
  border: none;
  border-radius: 10px;
  padding: 14px;
  color: white;
  margin: 16 px 0;
  font-size: 16px;
}

.required::after {
  content: "*";
  color: red;
}