@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-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: hsl(230, 69%, 95%);
  font: 400 1.6rem 'Poppins', 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: 4rem 2rem;
  border-radius: 1rem;
  background: #F8F9FE;
  box-shadow: 0 12px 20px rgb(164 175 225 / 75%);
}

.site-name h1 {
  font-weight: 600;
}

/* warning list */
.warning-list {
  padding: 20px;
  padding-right: 10px;
  margin-bottom: 40px;
  border-radius: 10px;
  list-style-type: none;
  background: hsla(0, 100%, 70%, 0.35);
}

.warning-list li {
  font-size: 13px;
  color: #943300;
  font-weight: 500;
  position: relative;
  padding-left: 18px;
}

.warning-list li:not(:last-child) {
  margin-bottom: 6px;
}

.warning-list li::before {
  left: 0;
  top: 50%;
  width: 12px;
  content: '';
  height: 12px;
  border-radius: 50%;
  position: absolute;
  background: #C01212;
  transform: translateY(-50%);
}

.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: #20ADC8;
}

.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, #9de54f, #619e1e);
}

.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: 10px;
  font-size: 1.5rem;
  appearance: menulist;
}

/* SA Toastr */
.swal2-popup.swal2-toast.swal2-show {
  background: var(--bg-primary);
  box-shadow: var(--box-shadow);
}


.colored-toast.swal2-icon-success {
  background-color: #a5dc86 !important;
}

.colored-toast.swal2-icon-error {
  background-color: #f27474 !important;
}

.colored-toast.swal2-icon-warning {
  background-color: #f8bb86 !important;
}

.colored-toast.swal2-icon-info {
  background-color: #3fc3ee !important;
}

.colored-toast.swal2-icon-question {
  background-color: #87adbd !important;
}

.colored-toast .swal2-title {
  color: white;
}

.colored-toast .swal2-close {
  color: white;
}

.colored-toast .swal2-html-container {
  color: white;
}

.swal2-popup.swal2-toast.swal2-show {
  font-size: inherit;
}