
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

html {
  background: linear-gradient(to right bottom, #F1F2F2, #E41C2B);
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 100%;
  background-attachment: fixed;
}

body {
  font-family: sans-serif;
  line-height: 1.4;
  display: flex;
}

.container {
  width: 460px;
  margin: auto;
  padding: 36px 40px 48px 40px;
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(30px);
  border: 2px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 80px rgba(0, 0, 0, 0.2);
  overflow: hidden;
}
/* box-shadow: 0 2.4rem 4.8rem rgba(0, 0, 0, 0.15); */

.anaf-title {
  padding: 15px;
  font-size: 22px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 8px;
}

.anaf-form {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 16px;
}

.anaf-form .labelblock {
  display: block;
  margin-bottom: 12px;
}

.anaf-form input[type="text"] {
  width: 100%;
  padding: 1.2rem 0.8rem;
  border-radius: 9px;
  border: none;
}

.anaf-form input[type="text"]:focus {
  outline: none;
  box-shadow: 0 0 0 4px rgba(253, 242, 233, 0.5);
}

input[type="radio"] {
  /* Add if not using autoprefixer */
  -webkit-appearance: none;
  /* Remove most all native input styles */
  appearance: none;
  /* For iOS < 15 */
  background-color: var(--form-background);
  /* Not removed via appearance */
  margin: 0;
  margin-right: 1em;

  font: inherit;
  color: #E41C2B;
  width: 1.15em;
  height: 1.15em;
  border: 0.15em solid #E41C2B;
  border-radius: 50%;
  transform: translateY(-0.075em);

  display: grid;
  place-content: center;
}

input[type="radio"]::before {
  content: "";
  width: 0.65em;
  height: 0.65em;
  border-radius: 50%;
  transform: scale(0);
  transition: 120ms transform ease-in-out;
  box-shadow: inset 1em 1em var(#E41C2B);
  /* Windows High Contrast Mode */
  background-color: #E41C2B;
}

input[type="radio"]:checked::before {
  transform: scale(1);
}

.option {
  display: flex;
  align-items: center;
}

.btn--form {
  background-color: #E41C2B;
  color: #F1F2F2;
  align-self: end;
  padding: 8px;
  margin-top: 24px;
}

.btn,
.btn:link,
.btn:visited {
  display: inline-block;
  text-decoration: none;
  font-size: 20px;
  font-weight: 600;
  border-radius: 9px;
  border: none;

  cursor: pointer;
  font-family: inherit;

  transition: all 0.3s;
}

#link {
  outline: 1px solid #E41C2B;
  text-align: center;
}

.btn--form:hover {
  background-color: #F1F2F2;
  color: #E41C2B;
}

.error {
  background-color: rgba(228, 28, 43, 0.5);
  color: #FFFFFF;
  border-radius: 9px;
  padding: 8px;
  margin-bottom: -24px;
  outline: 1px solid #E41C2B;
}