* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Poppins", sans-serif;
}

body {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background: #ffffff; /* fundo branco puro */
  color: #333;
}

.container {
  width: 400px;
  background: rgba(255, 255, 255, 0.95); /* fundo branco leve */
  border-radius: 16px;
  padding: 40px 30px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15); /* sombra suave */
  backdrop-filter: blur(12px);
  
}

.container h1 {
  font-size: 32px;
  text-align: center;
  margin-bottom: 25px;
  color: #7b3f00; /* marrom principal */
}

.input-box {
  position: relative;
  margin: 20px 0;
}

.input-box input {
  width: 100%;
  height: 50px;
  border: 1px solid #a9746e; /* marrom suave */
  border-radius: 10px;
  background-color: #ffffff; /* branco puro */
  color: #4b2e2e; /* texto marrom escuro */
  padding: 0 45px 0 15px;
  font-size: 15px;
  outline: none;
}

.input-box i {
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  font-size: 20px;
  color: #a9746e; /* marrom suave */
}

.input-box input::placeholder {
  color: #8c5e4b; /* marrom claro */
}

.remember {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  margin: 10px 0 20px;
  color: #8c5e4b;
}

.remember label {
  display: flex;
  align-items: center;
  gap: 5px;
}

.remember a {
  color: #7b3f00; /* marrom principal */
  text-decoration: none;
}

.remember a:hover {
  text-decoration: underline;
}

.login {
  width: 100%;
  height: 45px;
  background-color: #7b3f00; /* marrom principal */
  color: #fff;
  border: none;
  border-radius: 10px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.login:hover {
  background-color: #5a2c00; /* marrom escuro no hover */
}

.register-link {
  text-align: center;
  margin: 20px 0;
  font-size: 14px;
  color: #8c5e4b;
}

.register-link a {
  color: #7b3f00; /* marrom principal */
  text-decoration: none;
  font-weight: 500;
}

.register-link a:hover {
  text-decoration: underline;
}

.google-login-button {
    margin-top: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
}


