* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  height: 100vh;
  font-family: Segoe UI, sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url(https://th.bing.com/th/id/R.1ed9d1ce474c1db13a140233694a3e91?rik=6%2bolqZ93VNC9DA&riu=http%3a%2f%2fgetwallpapers.com%2fwallpaper%2ffull%2f1%2f4%2f6%2f866084-full-size-pink-computer-backgrounds-1920x1080-for-meizu.jpg&ehk=jeEbeG%2bBdcaGwHUz4gbhaV%2f5Fra4oJPD4p%2f8ytIvDbc%3d&risl=&pid=ImgRaw&r=0);
  position: relative;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.login-container {
  text-align: center;
}

.avatar {
  width: 120px;
  height: 12  0px;
  border-radius: 50%;
  margin-bottom: 15px;
  border: 2px solid #999;
}

.title {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 20px;
  color:white;  
}

.password-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.password-row input {
  padding: 10px;
  font-size: 16px;
  width: 240px;
  border: 1px solid #999;
  border-radius: 4px;
}

.go {
  padding: 10px 14px;
  border: 1px solid #666;
  background: #f3f3f3;
  cursor: pointer;
  border-radius: 4px;
  transition: 0.2s;
}
.go:hover {
  background: #ddd;
}

.bottom-bar {
  position: absolute;
  bottom: 20px;
  right: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.bottom-bar .lang {
  font-size: 14px;
  margin-right: 20px;
}

.bottom-bar .icons i {
  margin-right: 10px;
  font-size: 18px;
  cursor: pointer;
  transition: 0.2s;
  color: white;
}
.bottom-bar .icons i:hover {
  transform: scale(1.2);
  color: #0078d7; 
}
