@font-face {
  font-family: Roboto;
  src: url("./fonts/Roboto-VariableFont_wdth,wght.ttf");
}

@font-face {
  font-weight: 300;
  font-family: Roboto-Italic;
  src: url("./fonts/Roboto-Italic-VariableFont_wdth,wght.ttf");
}
body {
  background:url('./images/bg.jpeg');
  font-family: "Roboto", Arial;
}
.container {
  width:100%;
  height: 100%;
  color:#2E2E2E;
  display: flex;
  align-content: center;
  justify-content: center;
  align-items: center;
}
.forma h1 {
  margin:0 0 44px 0;
  font-size:32px;
  font-weight:400;
}
.forma {
  min-width:564px;
  border-radius:16px;
  padding:32px;
  background-color:#FFFFFF;
}
.forma .flexy_shmeksy {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 32px;
}
.forma .styled_check {
  display:flex;
  gap:12px;
  line-height:31px;
}
.forma label {
  font-size:16px;
}
.forma input[type=text],.forma input[type=password]{
  width: 100%;
  padding: 12px;
  display: inline-block;
  border:1px solid #00A19A;
  border-radius:8px;
  box-sizing: border-box;
}
.checkbox-input {
  appearance: none;
  position: relative;
  width: 25px;
  height: 25px;
  background: #FFF;
  border-radius: 4px;
  border: 1px solid #00A19A;
  transition: 500ms;
}
.checkbox-input::after {
  content: "";
  position: absolute;
  width: 0px;
  height: 0px;
  background-image: url("./images/check.svg");
  background-repeat: no-repeat;
  transition: 500ms;
  top: 4px;
  left: 4px;
}
.checkbox-input:checked::after {
  width: 16px;
  height: 16px;
  transition: 500ms;
}
.forma .inline_btn {
  display: flex;
  gap:20px;
  justify-content:center;
  height:43px;
  line-height:43px;
  margin-top:40px;
}
.forma .inline_btn a {
  font-size:20px;
  color:#00A19A;
}
.forma .inline_btn a:hover {
  text-decoration:none;
}
.forma input[type=submit] {
  background-color: #00A19A;
  color: white;
  padding: 12px 60px;
  border: none;
  border-radius:12px;
  cursor: pointer;
  font-size:16px;
}
.forma input[type=submit]:hover {
  background-color: #45a049;
}
.forma .field {
  margin-bottom:20px;
  font-size:16px;
}
@media (max-width: 764px) {
  .forma {
    min-width:auto;
  }
  .forma .inline_btn {
    flex-direction: column;
    gap:0;
    text-align:center;
  }
}