@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');

:root {
  --purple: hsl(236, 74%, 61%);
  --orange-dark: hsl(24, 96%, 52%);

  --bg-secondary: hsl(229, 33%, 19%);
  --txt-primary: hsl(233, 40%, 84%);
  --txt-primary-light: hsl(233, 14%, 53%);

  --bg-primary: ;
}

* {
  margin: 0;
  padding: 0;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  display: flex;
  color: #fff;
  overflow: hidden;
  min-height: 100vh;
  position: relative;
  align-items: center;
  box-sizing: border-box;
  justify-content: center;
  background: hsl(266, 87%, 12%);
  font: 400 1.6rem 'Poppins', sans-serif;
}

img {
  width: 100%;
}

a,
a:hover,
a:active,
a:visited {
  color: #fff;
  text-decoration: none;
}

.txt-yellow {
  color: var(--yellow);
}

.underline {
  text-decoration: underline;
}

.content-wrap {
  z-index: 1;
  margin: 5rem 0;
  max-width: 45rem;
  min-height: 35rem;
  padding: 4rem 2rem;
  border-radius: 1rem;
  position: relative;
  background: linear-gradient(to right bottom, #270B51 30%, #342F7F);

  display: flex;
  flex-direction: column;
  justify-content: center;
}

.site-name h1 {
  font-weight: 600;
}

.content-wrap input {
  height: 4.5rem;
  font-size: 1.6rem;
  border-width: 2px;
  border-radius: 1.2rem;
  padding: 0 1rem 0 5rem;
  color: hsl(0, 0%, 75%);
  transition: all 0.3s ease;
  border-color: hsl(345deg 60% 62% / 50%);
  background: hsl(255.94deg 59.26% 21.18%) !important;
}

.content-wrap input:focus {
  box-shadow: none;
  color: hsl(0, 0%, 75%);
  border-color: hsl(345deg 60% 62% / 1);
}

.content-wrap input::placeholder {
  color: hsl(0, 0%, 65%);
}

.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(0, 0%, 75%);
}

.btn-one-fill {
  all: unset;
  cursor: pointer;
  padding: 1rem 0;
  font-weight: 600;
  text-align: center;
  position: relative;
  margin-bottom: 1rem;
}

.btn-one-fill::before,
.btn-one-fill::after {
  top: 0;
  left: 0;
  opacity: 1;
  width: 100%;
  height: 100%;
  content: '';
  z-index: -1;
  position: absolute;
  border-radius: 1.2rem;
  transition: opacity 600ms ease;
  background: linear-gradient(90deg, #E47D66 0%, #B517C5 100%);
}

.btn-one-fill::after {
  opacity: 0;
  background: linear-gradient(90deg, #B517C5 0%, #E47D66 100%);
}

.btn-one-fill:hover::after {
  opacity: 1;
}

.btn-one-fill:hover::before {
  opacity: 0;
}


.small-link,
.small-link:hover {
  color: #fff;
  font-weight: 600;
  text-decoration: none;
}

/* gradient */
.hero-gr-top {
  top: 0;
  right: 0;
  width: 50%;
  z-index: -1;
  position: absolute;
}

#selectCaptcha{
  padding: 10px 10px;
  border-radius: 5px;
  margin-bottom: 10px;
  font-size: 1.5rem;
  appearance: menulist;
}