* {
  box-sizing: border-box;
}

body {
  display: flex;
  flex-wrap: wrap;
  margin: 0;
  min-height: 100vh;
  font-family: "Poppins", sans-serif;
  color: #1b2559;
  font-size: 14px;
  font-weight: 400;
  background-image: url("../assets/img/bg.png");
  background-size: cover;
  background-attachment: fixed;
}

a {
  color: #2f80ed;
  text-decoration: none;
}

.button {
  background-color: #4318ff;
  width: 122px;
  text-align: center;
  padding: 10px;
  font-size: 14px;
  display: inline-block;
  color: #fff;
  border-radius: 7px;
  line-height: 24px;
  box-sizing: border-box;
  border: none;
  cursor: pointer;
  box-shadow: 0 0 5px #4318ff;
  transition: 0.2s;
}
.button:hover {
  background-color: #3916d4;
  box-shadow: 0 0 14px #7f66ec;
}

.top-section {
  padding-top: 5%;
  display: flex;
  justify-content: space-between;
  max-width: 1235px;
  margin: 0 auto;
  width: 100%;
  align-self: center;
}

.left {
  width: 586px;
}
.left .logo {
  width: 100px;
}
.left h1 {
  font-size: 28px;
  font-weight: 700;
  line-height: 42px;
  margin: 80px 0 20px;
}
.left .main-text {
  font-size: 14px;
  line-height: 24px;
  color: #8d92ac;
  margin: 0 0 20px;
}
.left .main-text span {
  color: #1b2559;
}
.left .secondary-text {
  font-size: 11px;
  margin-bottom: 100px;
  color: #8d92ac;
}
.left .find-domain {
  background-color: #fff;
  border: 1px solid #0000001a;
  border-radius: 7px;
  box-shadow: 0px 18px 40px 0px #7090b01f;
  padding: 30px;
}
.left .find-domain label {
  font-weight: 600;
  line-height: 32px;
  font-size: 18px;
  display: block;
  margin-bottom: 20px;
}
.left .find-domain input {
  background-color: #f7f9fb;
  border: 1px solid #6868681a;
  border-radius: 7px;
  padding: 12px 20px 12px 42px;
  line-height: 20px;
  outline: 1px solid transparent;
  transition: 0.3s;
  width: 100%;
}
.left .find-domain input::placeholder {
  color: #8d92ac;
  font-family: "Poppins", sans-serif;
}
.left .find-domain input:focus {
  outline: 1px solid #0086ff;
}
.left .find-domain .search-row {
  display: grid;
  grid-template-columns: 1fr auto;
}
.left .find-domain .search-container {
  position: relative;
  margin-right: 10px;
}
.left .find-domain .search-container img {
  position: absolute;
  top: 50%;
  left: 20px;
  transform: translateY(-50%);
}

.right img {
  max-width: 570px;
}

.footer {
  font-family: "Roboto", sans-serif;
  text-align: center;
  padding-bottom: 24px;
  width: 100%;
  align-self: flex-end;
  font-size: 11px;
}
.footer span {
  font-size: 8px;
}

@media screen and (max-width: 1235px) {
  .top-section {
    padding-left: 100px;
    padding-right: 100px;
  }

  .left,
.right {
    width: 50%;
  }

  .right img {
    max-width: 100%;
  }
}
@media screen and (max-width: 835px) {
  body {
    height: 100vh;
  }

  .top-section {
    padding: 0 13px;
  }

  .left {
    width: 100%;
    text-align: center;
  }
  .left h1 {
    margin: 35px 0;
  }
  .left .secondary-text {
    margin-bottom: 40px;
  }
  .left .find-domain .button {
    display: none;
  }

  .right {
    display: none;
  }

  .footer {
    padding-bottom: 80px;
  }
}