body {
  font-family: 'Poppins', sans-serif;
  background: url('img/GO.gif') no-repeat center center fixed;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
  color: #ffffff;
}

.login-wrapper {
  display: flex;
  width: 1200px;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(25px);
  border-radius: 15px;
  box-shadow: 20px 15px 20px rgba(0, 0, 0, 0.629);
}

.image-section {
  flex: 1;
  overflow: hidden;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
}

.image-section img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.login-container {
  flex: 1;
  padding: 50px;
  text-align: center;
}

.login-container h1 {
  margin-bottom: 25px;
  font-size: 24px;
  color: #ffffff;
}

.login-container label {
  display: block;
  text-align: left;
  margin-top: 15px;
  font-size: 14px;
  color: #e0e0e0;
}

.login-container input {
  width: 96%;
  padding: 11px;
  margin-top: 5px;
  margin-bottom: 15px;
  border: 1px solid #23b00a;
  border-radius: 5px;
  background: rgba(0, 0, 0, 0.8);
  font-size: 16px;
  color: #ffffff;
}

.login-container button {
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: 5px;
  background: #278f08;
  color: #ffffff;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s;
}

.login-container button:hover {
  background: #58bc34;
}

.register-link {
  margin-top: 20px;
  font-size: 14px;
}

.register-link a {
  color: #fffdfd;
  text-decoration: none;
}

.register-link a:hover {
  text-decoration: underline;
}
.password-field {
  position: relative;
  display: flex;
  align-items: center;
}

.password-field input {
  flex: 1;
}

.toggle-password {
  position: absolute;
  right: 10px;
  cursor: pointer;
  font-size: 18px;
  color: #666;
}

.additional-links {
  margin-top: 20px;
  font-size: 14px;
  color: #ffffff;
}

.additional-links a {
  color: #ffffff;
  text-decoration: none;
  margin: 0 5px;
}

.additional-links a:hover {
  text-decoration: underline;
}
