* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', sans-serif;
}

body, html {
  height: 100%;
  width: 100%;

}

#username::placeholder,
#password::placeholder {
  color: rgb(182, 182, 182);
}

.container::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: url('../images/background5.jpg') no-repeat center center fixed;
  background-size: cover;
  filter: blur(5px);
  z-index: -1;
}

.container {
  position: relative;
  z-index: 1;
  overflow: hidden;
  background-color: black;

  /* Alinhamento do conteúdo visível */
  display: flex;
  flex-direction: column;
  align-items: right;         /* horizontal (no eixo transversal) */
  justify-content: center;     /* vertical (no eixo principal) */
  height: 100vh;
  color: white;
  text-align: center;
}


.login-box {
  background: rgba(0, 0, 0, 0.6);
  margin-left: 150px;
  color: rgb(255, 255, 255);
  border-radius: 30px;
  width: 300px;
  height: 500px;
  text-align: center;
}

.login-titulo{
  width: 100%;
  height: 15%;
  display: flex;
  background-color: rgb(255, 255, 255);
  border-radius: 30px 30px 0px 0px;
  justify-content: center;
  align-items: center;
  font-family: 'XXII Geom';
  font-style: normal;
  font-weight: 700;
  font-size: 25px;
  color: black;
  opacity: 100%;
}

.login-body{
  width: 100%;
  height: 85%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.body-titulo{
  width: 100%;
  height: 20%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 30px;
  margin-top: 30px;
}

.body-content{
  width: 100%;
  height: 80%;
  display: flex;
  justify-content: center;
  align-items: center;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus {
  -webkit-text-fill-color: #ffffff !important; /* cor do texto */
  box-shadow: 0 0 0px 1000px transparent inset !important; /* cor de fundo "dentro" do input */
  transition: background-color 9999s ease-in-out 0s !important;
  font-size: 20px !important;
}

.button-send{
  width: 165px;
  height: 64px;
  margin-top: 55px; 
  background-color: #ffffff;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  border-radius: 40px;
  color: black;
  font-family: 'Quache';
  font-style: normal;
  font-weight: 900;
  font-size: 22px;
}

.login-box h2 {
  font-size: 18px;
  color: #ccc;
  margin-bottom: 10px;
}

.input-group {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  width: 100%;
  border-bottom: 2px solid white;
  padding-bottom: 5px;
  
}

.input-group .icon {
  margin-right: 10px;
  margin-left: 5px;
  font-size: 18px;
}

.input-group input {
  background: transparent;
  border: none;
  outline: none;
  color: white;
  flex: 1;
  font-size: 20px;
  width: 210px;
}

button {
  margin-top: 20px;
  padding: 10px 20px;
  border: none;
  background: #eee;
  color: #222;
  font-size: 16px;
  border-radius: 20px;
  cursor: pointer;
  transition: background 0.3s ease;
}


footer {
  position: absolute;
  bottom: 15px;
  right: 20px;
  color: rgb(255, 255, 255);
  font-family: 'XXII Geom';
  font-style: normal;
  font-weight: 700;
  font-size: 15px;
}
