body {
  background: #eaf6f9;
}

.l-main {
  padding: 100px 0;
  background: transparent;
}
.l-container {
  max-width: 460px;
  padding: 20px;
  width: 100%;
  margin: 0 auto;
}
.l-form {
  display: flex;
  flex-direction: column;
  background: #fff;
  padding: 24px;
  border-radius: 4px;
  box-shadow: rgba(0, 43, 69, 0.25) 0px 1px 4px 0px;
}
.l-form__title {
  font-size: 24px;
  line-height: 30px;
  color: rgb(0, 43, 69);
  font-weight: 600;
  text-align: center;
}
.l-form__subtitle {
  font-size: 14px;
  line-height: 1.25;
  margin-top: 8px;
  text-align: center;
  color: rgb(84, 106, 117);
}
.l-form__fields-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.l-form__fields {
  margin: 24px 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.l-form__field {
  width: 100%;
}
.l-form__fields-row .l-form__field {
  width: calc(50% - 8px);
}
.l-form__field label {
  display: inline-block;
  font-size: 16px;
  line-height: 20px;
  font-weight: 400;
  margin-bottom: 8px;
}
.l-form__field input,
.l-form__field select {
  display: block;
  width: 100%;
  height: 36px;
  border: 0;
  border-bottom: 1px solid #546e7a;
  outline: none;
  background: transparent;
  color: #fff;
  font-size: 16px;
  box-sizing: border-box;
  font-family: inherit;
  color: #000;
  font-weight: 400;
}
.l-form__field input.invalid {
  border-color: red;
  background: rgba(255, 0, 0, 0.05);
}
.l-form__actions {
}
.l-btn {
  width: 100%;
  outline: none;
  font-family: 'Outfit Regular', sans-serif;
  text-align: center;
  cursor: pointer;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 2px;
  border: none;
  transition:
    background 0.2s ease-in-out,
    color 0.2s ease-in-out;
  padding: 0px 20px;
  height: 44px;
  background: rgb(223, 0, 73);
  color: rgb(255, 255, 255);
  font-size: 14px;
  line-height: 20px;
  font-weight: 600;
  text-decoration: none;
}
.l-btn:hover {
  background: #ff336e;
}

.loader {
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(0, 43, 69, 0.25);
  display: none;
}
.loader svg {
  width: 32px;
  height: 32px;
  color: #e0004a;
}

body.loading {
  overflow: hidden;
}
body.loading .loader {
  display: flex;
}

@media screen and (max-width: 640px) {
  .l-form__fields-row {
    gap: 12px;
  }
  .l-form__field label {
    font-size: 14px;
    line-height: 16px;
    margin-bottom: 4px;
  }
}
