:root {
  --main-light-color: linear-gradient(
    30deg,
    var(--gradient-color1-hover),
    var(--gradient-color2-hover),
    var(--gradient-color3-hover)
  );
  --gradient-color1: #309fc2;
  --gradient-color2: #7333d3;
  --gradient-color3: #384852;
  --main-color-1: linear-gradient(
    30deg,
    var(--gradient-color1),
    var(--gradient-color2),
    var(--gradient-color3)
  );
  --gradient-color1-hover: #30a0c2c3;
  --gradient-color2-hover: #7333d3c2;
  --gradient-color3-hover: #384852c1;
  --text-color: #fff;
}
.solicitar-teste {
  height: auto;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 0 1rem 0 1rem;
}
.logo-teste {
  height: auto;
  width: 70px;
}
.title-form-and-description .title {
  color: var(--text-color);
  display: flex;
  align-items: center;
  justify-content: center;
}

.message,
.signin {
  color: var(--text-color);
  font-size: 1em;
  font-weight: 500;
}

.form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px;
  position: absolute;
  max-width: 350px;
  background-color: transparent;
  transform: translate(-50%, -50%);
  left: 50%;
  top: 50%;
}
.form label {
  position: relative;
}

.form label .input {
  width: 100%;
  padding: 10px 10px 20px 10px;
  outline: 0;
  border-radius: 0.375rem;
  color: #ffffff;
  background: rgb(4, 27, 45, 0.09);
  border: 1px solid rgb(111, 194, 247, 0.09) !important;
  box-shadow: inset 0 0 10px rgb(0, 0, 0, 0.47);
  /* background: rgb(4, 27, 45, 0.09);
  border: 1px solid rgb(111, 194, 247, 0.09) !important;
  box-shadow: inset 0 0 10px rgb(0, 0, 0, 0.47); */
  /* border: 1px solid rgb(83 92 98);
  background-color: #23435885; */
  /* background-color: #fff; */
}
.input:focus {
  outline: none;
}
.input:focus-within {
  border: 1.5px solid #309fc2;
}
.form label .input + span {
  position: absolute;
  left: 10px;
  top: 15px;
  color: rgb(255, 255, 255);
  font-size: 0.9em;
  cursor: text;
  transition: 0.3s ease;
}
.form label .input:placeholder-shown + span {
  top: 15px;
  font-size: 0.9em;
}
.form label .input:focus + span,
.form label .input:valid + span {
  top: 30px;
  font-size: 0.7em;
  font-weight: 600;
}

.form label .input:valid {
  border: 1px solid #3476c6;
}
.form label .input:valid + span {
  color: green;
}
.divider {
  margin-top: 10px;
}
.form > .divider > button {
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--color-text);
  padding: 0.625rem 0.875rem;
  border-radius: 0.375rem;
  border: none;
  outline: none;
  height: 30px;
  width: 100px;
  background-color: var(--main-color);
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
  transition: 0.4s all linear;
}
.form > .divider > button:hover {
  opacity: 0.9;
  scale: 1.1;
}
.form > .divider > button:active {
  background-color: var(--main-color);
  scale: 1.1;
}
.telegram {
  width: 60px;
  height: 60px;
  z-index: 2;
  position: fixed;
  right: 15px;
  bottom: 15px;
  cursor: pointer;
  animation: pulse 3s infinite linear;
  border-radius: 50%;
}
@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: #0000009f 0 0 0 0;
  }
  50% {
    transform: scale(1.05);
    box-shadow: #fff3f346 0 0 0 6px;
  }
  100% {
    transform: scale(1);
    box-shadow: #0000005d 0 0 0 0;
  }
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(2, 14, 21, 0.349);
  backdrop-filter: blur(30px);
  /* background-color: rgba(255, 255, 255, 0.477); */
  z-index: 999;
  display: none;
}
.overlay-active {
  display: block;
}
#fechar-teste {
  background-color: rgb(230, 43, 43);
  padding: 0.625rem 0.875rem;
  border-radius: 0.375rem;
  border: none;
  outline: none;
  color: #fff;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  right: 1.3rem;
  bottom: 1.3rem;
  position: absolute;
  width: auto;
  font-size: 1rem;
}
#fechar-teste:hover {
  opacity: 0.9;
  scale: 1.1;
}
#fazer-teste:hover::after {
  width: 0;
  transition: 0.4s all linear;
}
