* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}
body {
  background: #f5f5f5;
}
.top-line {
  width: 100%;
  padding-block: 36px;
  background: white;
  .line {
    height: 56px;
    background: #1b317d;
  }
}
.top-content {
  width: 100%;
  min-height: 100vh;
  position: relative;
}
.arrow {
  transform: rotate(90deg);
  border-radius: 50%;
  width: 40px;
  height: 40px;
}
.arrow-wrapper {
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
  padding: 10px;
  border-radius: 50%;
  border: 10px solid #d00b0b;
  width: fit-content;
  animation: bounceDown 1.2s infinite;
}
@keyframes bounceDown {
  0% {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
  }
  50% {
    transform: translateX(-50%) translateY(15px);
    opacity: 0.7;
  }
  100% {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
  }
}
.content {
  display: flex;
  gap: 40px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  h1 {
    font-size: 40px;
  }
  a {
    padding: 10px 20px;

    text-decoration: none;
    border-radius: 10px;

    font-size: 30px;
    font-weight: 700;
    display: inline-block;
    position: relative;
    box-shadow: 0 0 0 rgba(160, 8, 8, 0.7);
    transition:
      transform 0.3s ease,
      box-shadow 0.3s ease;
  }
  a:hover {
    transform: scale(1.1) rotate(-2deg);
    box-shadow:
      0 0 30px rgba(255, 0, 0, 0.9),
      0 0 50px rgba(255, 0, 0, 0.6);
  }
}

.desclaimer {
  padding: 20px 10px;
  background: black;
  display: flex;
  flex-direction: column;
  gap: 15px;
  p {
    display: block;
    text-align: center;
    max-width: 900px;
    margin-inline: auto;
    color: rgb(121, 121, 121);
    font-size: 14px;
  }
}
.form-block {
  max-width: 1100px;
  width: 100%;
  display: flex;
  gap: 30px;
  align-items: start;
  justify-content: space-between;
  margin: 80px auto;
}
.info {
  max-width: 450px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.dop-info {
  display: flex;
  flex-direction: column;
  gap: 14px;
  border-radius: 25px;
  border: 1px solid #e2e3e4;
  background: #f8fafc;

  padding: 18px;
}
.di-item {
  display: flex;
  align-items: center;
  gap: 10px;
  img {
    width: 16px;
    height: 16px;
  }
  p {
    color: #384659;
  }
}
.links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  row-gap: 8px;
  justify-content: start;
  a {
    display: block;
    padding: 8px;
    border-radius: 10px;

    text-decoration: none;

    font-weight: 700;
    font-size: 14px;
    transition: background 0.5s ease;
  }
  a:hover {
    background: rgb(240, 239, 239);
  }
}
.form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-radius: 25px;
  padding: 24px;
  box-shadow:
    0 4px 38px 0 rgba(0, 0, 0, 0.25),
    0 4px 4px 0 rgba(0, 0, 0, 0.25);
}
input,
select {
  padding: 10px;
  border-radius: 10px;
  background: white;
  border: 1px solid #e2e3e4;
  width: 100%;
}
.inputs {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.inputs .top {
  display: flex;
  gap: 20px;
}
.ti-item {
  flex: 1;
  .label {
    margin-bottom: 10px;
  }
}
.label {
  font-weight: 700;
  font-size: 16px;
}
textarea {
  padding: 10px;
  border-radius: 10px;
  background: white;
  border: 1px solid #e2e3e4;
  width: 100%;
  max-width: 100%;
  height: 150px;
  resize: none;
}
.buttons {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.buttons a {
  display: block;
  padding: 10px;
  border-radius: 10px;
  border: 1px solid #e2e3e4;
  background: white;
  text-decoration: none;
  color: #384659;
  font-weight: 700;
  font-size: 14px;
  transition: background 0.5s ease;
  &:hover {
    background: rgb(240, 239, 239);
  }
}

@media (max-width: 1200px) {
  .form-block {
    max-width: 95%;
    gap: 20px;
  }
}

@media (max-width: 992px) {
  .form-block {
    flex-direction: column;
    align-items: center;
  }

  .info {
    max-width: 100%;
  }

  .form {
    width: 100%;
  }

  .content h1 {
    font-size: 32px;
    text-align: center;
  }

  .content a {
    font-size: 24px;
  }
}

@media (max-width: 768px) {
  .top-line {
    padding-block: 20px;
  }

  .top-line .line {
    height: 40px;
  }

  .content h1 {
    font-size: 26px;
  }

  .content a {
    font-size: 20px;
    padding: 8px 16px;
  }

  .arrow-wrapper {
    bottom: 20px;
  }

  .form-block {
    margin: 50px auto;
  }

  .inputs .top {
    flex-direction: column;
    gap: 10px;
  }

  .buttons {
    flex-direction: column;
    gap: 10px;
  }

  .buttons a {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .content {
    gap: 20px;
  }

  .content h1 {
    font-size: 22px;
  }

  .form {
    padding: 16px;
  }

  .label {
    font-size: 14px;
  }

  input,
  select,
  textarea {
    font-size: 14px;
  }

  .desclaimer p {
    font-size: 12px;
  }
}
