@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');

/* Reset e fontes */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

/* Corpo */
body {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background: url(imagem.jpg);
  background-size: cover;
  background-position: center;
}

/* Container */
.container {
  width: 420px;
  background-color: white;
  /*backdrop-filter: blur(5px); /* aplica o desfoque */
  /*-webkit-backdrop-filter: blur(10px); /* para compatibilidade */
  border-radius: 10px;
  border: 2px solid rgba(0, 0, 0, 0.2);
  color: #000000;
  padding: 30px 40px;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.container h1 {
  font-size: 36px;
  text-align: center;
  color:  rgb(250, 155, 22);
}

/* Input box */
.input-box {
  position: relative;
  width: 95%;
  height: 50px;
  margin: 30px 0;
}

.input-box input {
  width: 100%;
  background-color: transparent;
  backdrop-filter: blur(50px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 10px;
  border: 2px solid rgba(0, 0, 0, 0.2);
  outline: none;
  font-size: 16px;
  color: #000000;
  padding: 20px 40px 20px 20px;
}

.input-box input::placeholder {
  color: #5e5858;
}

.input-box i {
  position: absolute;
  right: 20px;
  top: 70%;
  transform: translateY(-50%);
  font-size: 20px;
  color: #333;
}

/* Lembrar e esqueci a senha */
.remember-forgot {
  display: flex;
  justify-content: space-between;
}

.remember-forgot label input {
  accent-color: #fff;
}

.remember-forgot a {
  text-decoration: none;
  color: rgb(250, 155, 22);
}

.remember-forgot a:hover {
  text-decoration: underline;
}

/* Botão de login */
.Login {
 width: 100%;
  height: 48px;
  background-color: rgb(253, 152, 9);
  border: none;
  cursor: pointer;
  font-size: 13px;
  font-weight: 500;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  border-radius: 50px;
  margin-top: 15px; 
}


