body {
  background-color: #f5f0e6;
  font-family: 'Inria Serif', serif;
  margin: 0;
  padding: 0;
}

.login-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.login-box {
  background-color: #fff;
  border: 2px solid #7a5c4c;
  border-radius: 12px;
  padding: 30px;
  width: 360px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  text-align: center;
}

.login-avatar {
  width: 50px;
  margin-bottom: 10px;
}

h2 {
  margin-bottom: 20px;
  font-size: 20px;
  color: #3c2f26;
}

.input-wrapper {
  display: flex;
  align-items: center;
  background-color: #b49e8f;
  border-radius: 5px;
  padding: 10px;
  margin: 10px 0;
}

.input-wrapper img {
  width: 18px;
  margin-right: 10px;
}

.input-wrapper input {
  border: none;
  background: transparent;
  flex: 1;
  font-size: 14px;
  color: white;
  outline: none;
}

.input-wrapper input::placeholder {
  color: #eee;
}

.checkbox-wrapper {
  font-size: 13px;
  color: #3c2f26;
  margin-bottom: 15px;
  text-align: left;
}

.btn-connect {
  background-color: #4e5da7;
  color: white;
  padding: 10px;
  border: none;
  border-radius: 25px;
  font-weight: bold;
  width: 100%;
  cursor: pointer;
}

.or-text {
  font-size: 14px;
  margin: 12px 0;
  color: #5a4639;
}

.btn-google,
.btn-insta {
  background-color: #5a4639;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px;
  border: none;
  border-radius: 5px;
  width: 100%;
  margin-bottom: 8px;
}

.btn-google img,
.btn-insta img {
  width: 18px;
  height: 18px;
}

.link-forgot {
  font-size: 12px;
  text-decoration: underline;
  color: #555;
  display: block;
  margin: 10px 0;
}

.bottom-text {
  font-size: 13px;
  color: #333;
}
