@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

:root {
  --orange-dark: hsl(24, 96%, 52%);
  --bg-primary: hsl(234, 45%, 14%);
  --bg-secondary: hsl(229, 33%, 19%);
  --txt-primary: hsl(233, 40%, 84%);
  --txt-primary-light: hsl(233, 14%, 53%);
}

* {
  margin: 0;
  padding: 0;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  display: flex;
  min-height: 100vh;
  position: relative;
  align-items: center;
  box-sizing: border-box;
  justify-content: center;
  background: #eef0f6;
  font: 400 1.6rem 'Inter', sans-serif;
}

img {
  width: 100%;
}

a,
a:hover,
a:active,
a:visited {
  color: #4b4b4b;
  text-decoration: none;
}

p {
  margin-bottom: 0px;
}

.txt-yellow {
  color: var(--yellow);
}

.underline {
  text-decoration: underline;
}

.content-wrap {
  margin: 5rem 0;
  max-width: 40rem;
  min-height: 35rem;
  overflow: hidden;
  padding-bottom: 4rem;
  border-radius: .1rem;
  background: #fff;
  box-shadow: -1px 11px 8px 1px hsl(226.99deg 52.2% 68.82% / 20%);
}

.site-name {
  width: 100%;
  height: 10rem;
  display: grid;
  place-items: center;
  background-size: cover;
}

.site-name > a {
  display: flex;
  margin: 0 auto;
  max-width: 20rem;
}

form {
  padding: 0 2rem;
}

.content-wrap input {
  height: 4.5rem;
  font-size: 1.6rem;
  border-width: 2px;
  border-radius: .1rem;
  padding: 0 1rem 0 6rem;
  color: hsl(0, 0%, 10%);
  transition: all 0.3s ease;
  border-color: #5B7BF8;
  background: hsl(0deg 0% 100%);
}

.content-wrap input:focus {
  box-shadow: none;
  border-color: #5B7BF8;
}

.content-wrap .input-icon {
  top: 0;
  width: 5rem;
  display: flex;
  height: 4.5rem;
  font-size: 2rem;
  position: absolute;
  align-items: center;
  background: #5B7BF8;
  justify-content: center;
  color: hsl(0, 0%, 100%);
  border-radius: .1rem;
}

.btn-submit {
  border: none;
  color: white;
  font-weight: 500;
  border-radius: .1rem;
  padding: 1.2rem 2rem;
  margin-bottom: 1.8rem;
  transition: all 0.4s ease;
  background: #5B7BF8;
  box-shadow: #5B7BF8;
}

.btn-submit:hover {
  color: #fff;
  transform: scale(1.05);
}

.btn-submit .icon {
  max-width: 50px;
  background: #fff;
  padding: 10px 14px;
  border-radius: .1rem;
}

.small-link,
.small-link:hover {
  color: #000;
  font-weight: 600;
}