@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box; }

a {
  text-decoration: none; }

.container-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  align-content: center;
  justify-content: center;
  width: 100%;
  padding: 10px;
  height: 100vh;
  background-color: #e8e8f0; }

.container-form h1 strong {
  color: #b8d840;
  text-shadow: 1px 1px 1px #383890; }

.container-form h1 span {
  color: #383890; }

.container-form a {
  text-align: center;
  color: #ffffff;
  text-decoration: underline; }

.form {
  display: flex;
  flex-direction: column;
  background-color: #383890;
  width: 400px;
  max-width: 400px;
  padding: 15px;
  color: #000;
  box-shadow: 10px 10px 40px rgba(0, 0, 0, 0.8);
  gap: 5px;
  border-radius: 8px; }

.container-form h1 {
  margin-bottom: 25px; }

.form h3 {
  font-weight: 500;
  font-size: 1em;
  padding-bottom: 25px;
  text-align: center;
  color: #e8e8f0; }

.form div {
  position: relative; }

.form input {
  padding: 15px;
  font-size: 14px;
  width: 100%;
  box-sizing: border-box;
  border: 1px solid #000;
  margin-bottom: 20px;
  margin-top: 5px;
  transition: all linear 160ms;
  outline: none;
  padding: 12px 40px 12px 12px;
  /* Espaço para o ícone */
  border-radius: 8px; }

.form input:focus {
  border: 1px solid black; }

.form i {
  font-size: 1.2rem;
  color: #383890; }

.form span {
  position: absolute;
  top: 40%;
  right: 12px;
  transform: translateY(-50%);
  color: #7878a0;
  pointer-events: none; }

.form .btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #b8d840;
  color: #000;
  font-size: 14px;
  font-weight: 600;
  border: none !important;
  transition: all linear 160ms;
  cursor: pointer;
  margin: 0 !important;
  text-align: center;
  height: 40px;
  border-radius: 8px; }

.form .btn:hover {
  transform: scale(1.05); }

.lembrar {
  display: flex;
  /* Ativa o flexbox */
  align-items: center;
  /* Alinha verticalmente ao centro */
  justify-content: flex-start;
  /* Alinha ao início da div */
  gap: 8px; }

/* Estilo do toggle switch */
/* Container do toggle + texto */
.switch-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  /* espaço entre texto e switch */ }

.switch-container p {
  font-size: 0.8rem;
  color: #ffffff; }

/* Estilo do toggle switch */
.switch {
  position: relative;
  display: inline-block;
  width: 56px;
  height: 37px; }

.switch input {
  opacity: 0;
  width: 0;
  height: 0; }

/* Slider */
.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: silver;
  transition: 0.4s;
  border-radius: 28px; }

.slider:before {
  position: absolute;
  content: "";
  height: 17px;
  width: 17px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: 0.4s;
  border-radius: 50%; }

input:checked + .slider {
  background-color: #b8d840;
  /* cor quando ligado */ }

input:checked + .slider:before {
  transform: translateX(22px); }

@media screen and (max-width: 468px) {
  .form {
    max-width: 300px; } }

/*# sourceMappingURL=login.css.map */
