@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:ital,wght@0,100..700;1,100..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Alice&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

.poppins-regular {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.poppins-bold {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.josefin-sans {
  font-family: "Josefin Sans", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

.alice-regular {
  font-family: "Alice", serif;
  font-weight: 400;
  font-style: normal;
}  

*{
  font-family: 'Poppins';
}

@font-face {
  font-family: 'kuchek';
  src: url('/fonts/Kuchek.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}

form{
    justify-content: center;
    align-items: center;
    text-align: center;
}

input::placeholder{
  color: #ffffffbe;
} 

.linha{
  height: 5px;
  background-color: #945CF8;
}

.branco{
  margin-top: 245px;
  background-color: rgba(255, 255, 255, 0.808);
  width: 650px;
  height: 450px;
  border-radius: 30px;
  border: 3px solid #945CF8;
  border-radius: 20px;
  display: fixed;
}

body {
  display: flex;
  min-height: 100vh;
  background-color: #232323;
  flex-direction: column; /* Adicionando flex-direction para empilhar os elementos verticalmente */
  align-items: center;
  overflow: hidden;
}

.cam{
  margin-top: 20px;
  width: 500px;
  height: 100px;
}

.input{
    margin-top: 35px;
    text-align: center;
    font-family: "Josefin Sans";
}

.input-wrapper input {
  background-color: #292929;
  border: none;
  padding: 1rem;
  font-size: 1.3rem;
  width: 25em;
  border-radius: 1rem;
  color: #fff;
  box-shadow: 0 0.4rem #8E68E6;
  cursor: pointer;
}

.input-wrapper input:focus {
  outline-color: #4B1CB0;
}
  
button {
  font-family: "Alice";
  margin-top: 30px;
  margin-left: 15px;
  margin-right: 20px;
  font-size: 1.5rem;
  color: #FAFAFA;
  text-transform: uppercase;
  padding: 10px 20px;
  border-radius: 10px;
  border: 2px solid #292929;
  background: #292929;
  box-shadow: 0px 5px #8E68E6;
  cursor: pointer;
}
  
button:active {
    box-shadow: none;
    transform: translate(0px, 3px);
}

a:link{
  text-decoration: none;
  color: #fff;
}

.register {
  font-size: 0.9rem;
  color: black;
  text-align: center;
  margin: 25px 0 10px;
}

.register p a {
  text-decoration: none;
  color: black;
  font-weight: 600;
}

.register p a:hover {
  text-decoration: underline;
}

.alert-success {
  padding: 25px 40px;
  position: fixed;
  top: -150px;
  right: 765px;
  background-color: rgb(245,255,247);
  border-radius: 20px;
  color: black;
  font-size: 25px;
}

.alert {
  padding: 25px 40px;
  position: fixed;
  right: -500px;
  top: -150px; 
  right: 642px;
  background-color: rgb(215,10,54);
  border-radius: 20px;
  color: #fff;
  font-size: 25px;
}

@keyframes desce {
  0% {
      transform: translateY(-400px);
      /* opacity: 0; */
  }
  100% {
      transform: translateY(200px);
      /* opacity: 1; */
  }
}

@keyframes sobe {
  0% {
      transform: translateY(200px);
      /* opacity: 1; */
  }
  100% {
      transform: translateY(-400px);
      /* opacity: 0; */
  }
}

.desce {
  animation: desce 1.5s ease-out;
}

.sobe {
  animation: sobe 1s ease-out forwards;
}

.alert-success.active, .alert.active {
  display: block;
}

.alert-success.sobe, .alert.sobe {
  animation: sobe 1s ease-out forwards;
}

.alert-success.desce, .alert.desce {
  animation: desce 1s ease-out forwards;
}