@import url('https://fonts.googleapis.com/css2?family=Ubuntu:wght@300;400;700&display=swap');

:root {
  --purple: hsl(236, 74%, 61%);
  --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;
  align-items: center;
  box-sizing: border-box;
  justify-content: center;
  background: #f3f4f6;
  font: 400 1.6rem 'Ubuntu', sans-serif;
}

img {
  width: 100%;
}

a,
a:hover,
a:active,
a:visited {
  color: #4b4b4b;
  text-decoration: none;
}

.txt-yellow {
  color: var(--yellow);
}

.underline {
  text-decoration: underline;
}

.content-wrap {
  margin: 5rem 0;
  max-width: 45rem;
  min-height: 35rem;
  padding: 3rem 2rem;
  padding-bottom: 1rem;
  border-radius: 1rem;
  background: #ffffff;
  box-shadow: 1px 3px 7px 1px rgb(166 177 221 / 11%);
}

.site-name h1 {
  font-weight: 600;
}

.content-wrap input {
  height: 4.5rem;
  font-size: 1.6rem;
  border-width: 2px;
  border-radius: 99px;
  padding: 0 1rem 0 5rem;
  color: hsl(0, 0%, 10%);
  transition: all 0.3s ease;
  background: hsl(0, 0%, 100%);
  border-color: hsl(261deg 94% 20%);
}

.content-wrap input:focus {
  box-shadow: none;
  border-color: #80cafe;
}

.content-wrap .input-icon {
  top: 0;
  width: 5rem;
  display: flex;
  height: 4.5rem;
  font-size: 2rem;
  position: absolute;
  align-items: center;
  justify-content: center;
  color: hsl(206, 6%, 55%);
}

.btn-submit {
  border: none;
  color: white;
  font-weight: 600;
  border-radius: 8px;
  margin-bottom: -1rem;
  padding: 1.2rem 2rem;
  transition: all 0.4s ease;
  background: linear-gradient(to right, #7ED2FF, #9D81FC);
}

.btn-submit:hover {
  color: #fff;
  transform: scale(1.05);
}

.btn-submit.blue {
  display: flex;
  padding: 4px;
  margin-bottom: 2rem;
  align-items: center;
  background: #4284f2;
}

.btn-submit .icon {
  max-width: 50px;
  background: #fff;
  padding: 10px 14px;
  border-radius: 5px;
}

.small-link,
.small-link:hover {
  color: #000;
  font-weight: 600;
  text-decoration: none;
}

#selectCaptcha{
  padding: 10px 10px;
  border-radius: 5px;
  margin-bottom: 15px;
  font-size: 1.5rem;
  appearance: menulist;
}