body {
  font-family: Arial, sans-serif;
  box-sizing: border-box;
}

.header {
  height: 80px;
  width: 100%;
  background: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0px 27px 83px rgba(36, 36, 37, 0.03),
    0px 8.13971px 25.0221px rgba(36, 36, 37, 0.0195477),
    0px 3.38082px 10.3929px rgba(36, 36, 37, 0.015),
    0px 1.22278px 3.7589px rgba(36, 36, 37, 0.0104523);
  margin-bottom: 109px;
}

.wrapper {
  display: flex;
  align-items: center;
  flex-direction: column;
  width: 100%;
}

.title {
  font-size: 48px;
  font-weight: 700;
  color: #27272a;
  margin-bottom: 16px;
}

.subtitle {
  font-weight: 500;
  font-size: 20px;
  color: #959595;
  margin-bottom: 92px;
}

.form-container {
  width: 75%;
}

.label {
  font-weight: 600;
  font-size: 32px;
  color: #27272a;
  margin-bottom: 11px;
}

.input-container {
  display: flex;
  align-items: center;
  width: 100%;
  align-self: stretch;
  column-gap: 16px;
  margin-bottom: 36px;
}
.input-container input[type="text"] {
  padding-left: 15px;
  font-style: normal;
  font-weight: 500;
  font-size: 20px;
}
.input-container.input-url input[type="text"] {
  padding-left: 40px;
  background-repeat: no-repeat;
  background-position: 13px center;
  background-image: url("../images/icons/link.svg");
  background-size: 20px;
}
.input-container.output-url input[type="text"] {
  color: #5b87ff;
}
.input {
  flex-grow: 1;
  flex-basis: 0;
  height: 53px;
  border-radius: 8px;
  border: 1px solid rgba(145, 158, 171, 0.32);
  outline: none;
}

.input::placeholder {
  font-style: normal;
  font-weight: 500;
  font-size: 20px;
}

.input:focus {
  border: solid 1px #ff6c00;
}

.input-container {
  position: relative;
}

.btn {
  width: 157px;
  height: 58px;
  background-color: #ff6c00;
  color: white;
  border: none;
  cursor: pointer;
  border-radius: 8px;
  font-style: normal;
  font-weight: 700;
  font-size: 18px;
}

.btn:hover {
  background-color: #ff8000;
}
