*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: inherit; }

html {
  font-size: 62.5%;
  box-sizing: border-box; }

body {
  font-size: 1.6rem;
  font-family: "Libre Franklin", sans-serif;
  min-height: 100vh;
  display: grid;
  grid-template-rows: 1fr auto;
  justify-items: center; }

.container {
  max-width: 750px;
  width: 90%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center; }
  @media (min-width: 1140px) {
    .container {
      max-width: 630px; } }

.content__logo {
  width: clamp(5.5rem, 7vw, 8.5rem);
  margin: 8rem 0 3.5rem 0; }
  @media (min-width: 750px) {
    .content__logo {
      margin: 8rem 0 4.2rem 0; } }

.content__title {
  font-size: clamp(2.2rem, 4vw, 4.85rem);
  font-weight: 300;
  color: #969696;
  margin-bottom: 1.7rem; }

.content__span {
  font-weight: 600;
  color: #151f29; }

.content__text {
  font-size: clamp(1.2rem, 3vw, 2rem);
  opacity: 0.9;
  margin-bottom: 3rem; }
  @media (min-width: 1140px) {
    .content__text {
      margin-bottom: 4rem; } }

.content__form {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin-bottom: 4rem;
  gap: 1rem; }
  @media (min-width: 1140px) {
    .content__form {
      flex-direction: row;
      align-items: flex-start; } }

.content__box {
  width: 83%; }
  @media (min-width: 1140px) {
    .content__box {
      flex: 0 1 69%; } }

.content__input {
  width: 100%;
  padding: 1.1rem 3.5rem;
  border-radius: 5rem;
  border: 1px solid #c2d3ff;
  font-size: 1.6rem; }
  .content__input::placeholder {
    color: #c2d3ff; }
  .content__input:focus-visible {
    outline: 1px solid #4f7df3; }
  @media (min-width: 1140px) {
    .content__input {
      width: 100%;
      padding: 1.8rem 3.5rem; } }

.content__error {
  color: #ff5263;
  font-size: 1rem;
  text-align: center;
  margin-bottom: 2rem;
  margin-top: 1rem; }
  @media (min-width: 1140px) {
    .content__error {
      font-size: 1.3rem;
      padding-left: 3.8rem;
      text-align: left; } }

.content__button {
  color: white;
  width: 83%;
  padding: 1.1rem 1.5rem;
  border-radius: 5rem;
  border: 1px solid #4f7df3;
  background-color: #4f7df3;
  transition: all 0.2s;
  box-shadow: rgba(79, 125, 243, 0.2) 0px 10px 10px 0px; }
  .content__button:hover {
    opacity: 0.8;
    cursor: pointer; }
  @media (min-width: 1140px) {
    .content__button {
      padding: 1.8rem 3.5rem;
      flex: 0 1 31%;
      font-size: 1.6rem; } }

.content__image {
  width: 90%;
  margin: 5rem 0 7.5rem 0; }
  @media (min-width: 1140px) {
    .content__image {
      width: 100%; } }

.content__icons {
  list-style: none;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  justify-content: center; }
  .content__icons > * {
    border: 1px solid rgba(194, 211, 255, 0.5);
    border-radius: 50%; }
    .content__icons > *:not(:last-child) {
      margin-right: 1.5rem; }
  @media (min-width: 768px) {
    .content__icons {
      margin-bottom: 2rem; } }

.content__icon {
  transition: all 0.2s; }
  .content__icon:hover {
    cursor: pointer;
    background-color: #4f7df3; }
    .content__icon:hover .content__list-icon {
      fill: white; }

.content__social-link {
  width: 3rem;
  height: 3rem;
  fill: #4f7df3;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s; }

.content__list-icon {
  width: 1.5rem;
  fill: #4f7df3; }

.content__copyright {
  font-size: clamp(0.8rem, 2vw, 1.2rem);
  margin-bottom: 0.5rem;
  color: #969696; }

.attribution {
  width: 50%;
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.5rem;
  text-align: center;
  margin-bottom: 5rem; }
  .attribution__link:link, .attribution__link:visited {
    text-transform: uppercase;
    color: #4f7df3;
    transition: all 0.2s; }
  .attribution__link:hover, .attribution__link:active {
    color: #c2d3ff; }
