*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #BFD7E4;
}

body::before {
  content: '';
  width: 100%;
  height: 465px;

  background: #293241;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.page {
  width: 750px;
  margin: auto;
}

header h1, .information legend, legend, button {
  font-family: 'Staatliches', cursive;
}

header p, label, span, input, select, textarea{
  font-family: 'Poppins', sans-serif;
}

header h1 {
  font-size: 36px;
  font-weight: 400;
}

header p {
  font-size: 16px;
}

img {
  margin: 30px auto 21px;
}

header {
  color: #FFF;
  width: 391px;
  text-align: center;
  margin-top: 107px;
}

.margin-header {
  display: flex;
  align-items: center;
  justify-content: center;
}

.information {
  border-radius: 20px 20px 0 0;
  background: #F67669;
  height: 133px;
  padding: 50px 275px;
}

.information legend {
  color: #FFF;
  font-size: 24px;
  font-weight: 400;
  line-height: 34px;
  border: 0;
  padding: 0;
}

legend {
  font-size: 24px;
  color: #253B51;
  line-height: 34px;
  display: flex;
  justify-content: center;
  width: 100%;

  padding-bottom: 8px;
  padding-top: 30px;
  border-bottom: 1px solid #E6E6F0 ;
  margin-bottom: 30px;
}

form {
  border-radius:0 0 20px 20px;
  background: #FFF;
  margin-bottom: 100px;
}

.full {
  padding: 30px 64px 64px 64px;
}

fieldset {
  border: none;
}

.input-warpper {
  display: flex;
  flex-direction: column;
}

.colun-2 {
  display: flex;
  gap: 22px;
}

.colun-2 input {
  width: 300px;
}

label {
  color: #4E4958;
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  margin-bottom: 8px;
}

span {
  color: #C1BCCC;
  font-size: 12px;
  font-weight: 400;
  line-height: 20px;
  margin-left: 9px;
}

input {
  width: 100%;
  height: 55px;
  border-radius: 8px;
  border: 1px solid #E6E6F0;
  background: #FAFAFC;
  color: #58555e;
  padding: 10px;
  font-size: 14px;
}

.fieldset-warpper {
  display: flex;
  flex-direction: column;
  gap: 15px; 
}

select {
  width: 300px;
  height: 55px;
  border-radius: 8px;
  border: 1px solid #E6E6F0;
  background: #FAFAFC;
  padding: 10px;
  color: #58555e;
  font-size: 14px;
  appearance: none;
}

textarea {
  width: 608px;
  height: 166px;
  border-radius: 8px;
  border: 1px solid #E6E6F0;
  background-color: #FAFAFC;
  padding: 10px;
  font-size: 14px;
}

.checkbox-warpper {
  position: relative;
}

.checkbox-warpper input {
  position: absolute;
  top: 0;
  left: 0;
  width: 24px;
  height: 24px;
  opacity: 0  ;
}
.checkbox-warpper label {
  display: flex;
  margin: 0;
  gap: 8px;
  align-items: center;
}

.checkbox-warpper label::before {
  content: " ";
  width: 24px;
  height: 24px;
  border: 1px solid #E6E6F0;
  background-color: #FAFAFC;
  border-radius: 8px;
  display: block;
}

.checkbox-warpper input:checked + label::before {
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_2002_23)'%3E%3Cpath d='M9 16.17L4.83 12L3.41 13.41L9 19L21 7L19.59 5.59L9 16.17Z' fill='%2342D3FF'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_2002_23'%3E%3Crect width='24' height='24' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A");
}

.checkbox-warpper input:focus + label::before {
  outline: 2px solid black ;
}

.colun-3 {
  display: flex;
}

.colun-3 input {
  width: 100%;
}

.date-warpper {
  display: flex;
  flex-direction: column;

}

.date-warpper input{
  width: 300px;
  margin-right: 32px;
}

.times {
  display: flex;
  gap: 10px;
  width: 100%;
}

.times-warpper {
  display: flex;
  flex-direction: column;
}

.times-warpper input{
  width: 140px;
}

button {
  border-radius: 8px;
  background: #F67669;
  margin-top: 60px;
  color: white ;
  width: 622px;
  height: 51px;
  border: none;
  font-size: 20px;
  line-height: 26px;
  font-weight: 400;
}