@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: ; */
  --text-primary: #373751;
  --body-bg: hsl(189 100% 98% / 1);
}

* {
  margin: 0;
  padding: 0;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  display: flex;
  overflow: hidden;
  min-height: 100vh;
  position: relative;
  align-items: center;
  box-sizing: border-box;
  justify-content: center;
  color: var(--text-primary);
  background: var(--body-bg);
  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;
  display: flex;
  margin: 5rem 0;
  max-width: 45rem;
  min-height: 35rem;
  padding: 4rem 2rem;
  border-radius: 1rem;
  position: relative;
  flex-direction: column;
  justify-content: center;
}

.title {
  font-weight: 600;
  font-size: calc(2rem + 0.6vw);
}

.content-wrap input {
  height: 5.5rem;
  font-size: 1.6rem;
  border-width: 2px;
  border-radius: 9rem;
  padding: 0 1rem 0 5rem;
  transition: all 0.3s ease;
  border-color: hsl(208deg 97% 63% / 40%);
}

.content-wrap input:focus {
  box-shadow: none;
  border-color: hsl(207.89deg 96.86% 62.55%);
}

.content-wrap input::placeholder {
  color: hsl(0, 0%, 65%);
}

.content-wrap .input-icon {
  top: 0;
  width: 6rem;
  display: flex;
  height: 5.8rem;
  font-size: 2.3rem;
  position: absolute;
  align-items: center;
  justify-content: center;
  color: hsl(0 0% 65% / 1);
}

.btn-one-fill {
  all: unset;
  color: #fff;
  cursor: pointer;
  padding: 1.2rem 0;
  font-weight: 600;
  text-align: center;
  margin-bottom: 1rem;
  border-radius: 9rem;
  background: #4da2ff;
  border: 2px solid #4da2ff;
  transition: background 300ms ease, color 300ms ease;
}

.btn-one-fill.outlined {
  background: hsla(211, 100%, 65%, 0.1);
  border-color: hsla(211, 100%, 65%, 0.4);
}

.btn-one-fill:hover,
.btn-one-fill.outlined {
  color: #373751;
  background: hsla(211, 100%, 65%, 0.2);
}

.small-link,
.small-link:hover {
  font-weight: 600;
  text-decoration: none;
  color: var(--text-primary);
}

.login-margin {
  margin-top: 15rem;
}

.login-img {
  top: -10rem;
  right: -20rem;
  transform: scaleX(-1);
  max-width: 28rem;
  position: absolute;
}

.login-img.signup {
  top: 0rem;
  right: -25rem;
}

@media all and (max-width: 767.9px) {
  .login-img {
    display: none;
  }

  .login-margin {
    margin-top: 0;
  }
}

#selectCaptcha{
  padding: 10px 10px;
  border-radius: 5px;
  margin-bottom: 10px;
  font-size: 1.5rem;
  appearance: menulist;
}
