section {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  color: white;
}

.container {
  display: flex;
  justify-content: center;
  height: 100%;
  min-height: 300px;
  width: 100%;
}

.reg-head {
  font-family: 'Unbounded', sans-serif;
  font-size: 35px;
  color: rgba(50, 50, 200, 0.8);
}

.form-control {
  border-radius: 10px;
  border-color: #D3D2EA;
  transition: box-shadow 0.5s;
}

.form-control:focus, .form-control:hover {
  box-shadow: 0 0 0 0.25rem rgba(50, 50, 200, 0.2);
  border-color: #3232c8;
}

.agreement_link, .login_link {
  color: #3232c8;
}

.agreement_link:hover, .login_link:hover {
  color: #8600c9;
}