@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@200..1000&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Nunito", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

body {
  width: 100%;
  height: 100vh;

  background: #14398D;
  background: linear-gradient(90deg, rgba(20, 57, 141, 1) 0%, rgba(34, 131, 196, 1) 100%);

  display: flex;
  align-items: center;
  justify-content: center;
}

h1 {
  text-align: center;
  margin-bottom: 30px;
}

a:first-of-type {
  margin-bottom: 40px;
}

form, .wrapper {
  background-color: #FFF;
  border-radius: 20px;
  padding: 30px 20px;
  display: flex;
  flex-flow: column;
  align-items: center;

  width: 500px;

  -webkit-box-shadow: 0px 0px 27px 3px rgba(22,63,140,0.64); 
  box-shadow: 0px 0px 27px 3px rgba(22,63,140,0.64);
}

section {
  width: 100%;
  margin-bottom: 30px;
}

.form_part {
  display: flex;
  flex-flow: column;

  width: 100%;
}

h3 {
  margin-bottom: 5px;
}

input:not(input[type="checkbox"]) {
  margin-bottom: 5px;
  border: none;
  outline: none;
  background-color: #eef;
  height: 30px;
  border-radius: 10px;
  padding: 0 10px;

  &:disabled {
    background-color: #eee;
  }
}

input[type="checkbox"] {
  cursor: pointer;
}

button {
  border: none;
  outline: none;
  background: #14398D;
  background: linear-gradient(90deg, rgba(20, 57, 141, 1) 0%, rgba(34, 131, 196, 1) 100%);
  color: #FFF;
  padding: 10px 40px;
  border-radius: 10px;
  margin-top: 10px;
  text-transform: uppercase;
  max-width: 50%;
  width: 100%;
  cursor: pointer;

  transition: transform .2s;
}

button:active {
  transform: scale(.9);
}