* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}
body {
  margin: 0;
  padding: 0;
  background: #f2f2f2;
  font-family: Arial, sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}
.container {
  background: #402626b3;
  backdrop-filter: blur(10px);
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  width: 350px;
  text-align: center;
}
h2 {
  margin-bottom: 20px;
  font-size: 22px;
}
.flags {
  display: flex;
  justify-content: space-around;
  margin-bottom: 30px;
}
.flags img {
  width: 50px;
  cursor: pointer;
  transition: transform 0.2s;
}
.flags img:hover {
  transform: scale(1.1);
}
input[type="text"],
input[type="password"] {
  width: 100%;
  padding: 10px;
  margin: 10px 0;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 14px;
}
button {
  width: 100%;
  padding: 12px;
  border: none;
  background: #0a74da;
  color: #fff;
  font-size: 16px;
  border-radius: 8px;
  cursor: pointer;
  margin-top: 10px;
  transition: 0.2s;
}
button:hover {
  background: #095bb0;
}
.password-wrapper {
  position: relative;
  width: 100%;
}

.password-wrapper input {
  width: 100%;
  padding-right: 45px; /* ადგილი თვალისთვის */
}

.toggle-eye {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  font-size: 20px;
  opacity: 0.6;
  transition: 0.2s;
}

.toggle-eye:hover {
  opacity: 1;
}

/* Responsive */
@media (max-width: 480px) {
  .container {
    width: 90%;
    padding: 25px;
  }
  .flags img {
    width: 40px;
  }
}
