* {
  box-sizing: border-box;
  font-family: 'Montserrat-Regular';
  color: #60606F;
}

.wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 100vh;
}

.container {
  width: 1200px;
  max-width: 100%;
  display: flex;
  flex-direction: column;
}

.left-side {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  padding: 20px;
}

img {
  width: 211px;
  margin: 20px auto;
}

h1 {
  margin: 0;
  color: #051EBF;
  font-weight: 400;
  font-family: 'Poppins-Regular';
}

p {
  margin: 0;
}

ol {
  margin: 0;
  padding: 0 0 0 18.8px;
}

li {
  margin-bottom: 12px;
}

li::marker {
  color: #051EBF;
}

.right-side {
  display: flex;
  width: 100%;
}

em {
  text-align: center;
  color: white;
  margin-bottom: 20px;
  font-size: 14px;
}

.form-wrapper {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 28px;
  background: #05126C;
}

.form-item {
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
}

label {
  cursor: pointer;
  color: white;
  margin-bottom: 6px;
  width: min-content;
  white-space: nowrap;
  position: relative;
}

label::after {
  content: '*';
  position: absolute;
  top: 0;
  right: -10px;
  color: #BD002D;
}

input,
select {
  width: 100%;
  border-radius: 12px 12px 12px 0;
  border: 2px solid #A5A5B4;
  color: #122188;
  outline: none !important;
  max-width: 100%;
  background: white;
  height: 40px;
  font-size: 14px;
  padding: 4px 10px;
}

button {
  background: #00A538;
  border: 2px solid #00A538;
  color: #F9F9F9;
  outline: none;
  cursor: pointer;
  box-shadow: none;
  line-height: 1;
  font-size: 14px;
  border-radius: 12px 12px 12px 0px;
  transition: background .3s ease, border .3s ease, color .3s ease;
  height: 48px;
  font-size: 16px;
  font-family: 'Poppins-Semibold';
}

button:hover,
button:focus,
button:active,
button:active:focus {
  background: #006321;
  border: 2px solid #006321;
}

small {
  text-align: center;
  color: rgba(255, 255, 255, .75);
}

@media screen and (min-width: 961px) {
  .container {
    flex-direction: row;
    align-items: center;
  }
  
  img {
    width: 211px;
    margin: 20px 0;
  }

  .left-side {
    width: calc(100% - 560px);
  }

  .right-side {
    width: 560px;
    height: min-content;
    padding: 20px;
  }

  .form-wrapper {
    border-radius: 20px 20px 20px 0;
  }
}