body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: #000000;
}

.login-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.login-box {
  background: white;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
  width: 100%;
  max-width: 400px;
  text-align: center;
  position: relative;
}

.logo {
  width: 260px;
  margin-bottom: 20px;
}

.login-box h2 {
  margin-bottom: 30px;
  color: #990000;
}

.login-box label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
  text-align: left;
}

.login-box input {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 8px;
}

.login-box button {
  width: 100%;
  padding: 12px;
  background: #990000;
  border: none;
  border-radius: 8px;
  color: white;
  font-weight: bold;
  font-size: 16px;
  cursor: pointer;
}

.error-msg {
  color: red;
  margin-bottom: 15px;
  text-align: center;
}

.lang-switch {
  position: absolute;
  top: 10px;
  right: 15px;
}

.lang-switch a {
  margin-left: 10px;
  font-size: 18px;
  text-decoration: none;
}
 
 .lang-switch img {
  border-radius: 3px;
  transition: transform 0.2s ease;
}

.lang-switch a:hover img {
  transform: scale(1.2);
}
 