body {
margin: 0;
  padding: 0;
  font-family: "Segoe UI", sans-serif;
  background: url("/static/bg_right.jpg") no-repeat center center fixed;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.login-container {
  width: 100%;
  max-width: 460px;
  padding: 20px;
  box-sizing: border-box;
}

.login-box {
  background-color: rgba(255, 255, 255, 0.95);
  padding: 40px 30px;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
  text-align: center;
}

.logo-container {
  margin-bottom: 20px;
}

.logo-img {
  max-width: 180px;
  height: auto;
  object-fit: contain;
}

.login-title {
  font-size: 20px;
  font-weight: bold;
  color: #2c3e50;
  margin-bottom: 30px;
  text-transform: uppercase;
}

.login-input {
  width: 85%;
  padding: 12px 18px;
  margin: 12px auto;
  border: 1px solid #ccc;
  border-radius: 25px;
  box-shadow: inset 0 2px 4px rgba(0,0,0,0.05);
  font-size: 15px;
  outline: none;
  transition: 0.3s;
  display: block;
}

.login-input:focus {
  border-color: #3498db;
  box-shadow: 0 0 8px rgba(52,152,219,0.5);
}

.login-button {
  background-color: #3498db;
  color: white;
  border: none;
  padding: 12px 26px;
  font-size: 16px;
  border-radius: 25px;
  cursor: pointer;
  margin-top: 18px;
  width: 70%;
  transition: background-color 0.3s ease;
}

.login-button:hover {
  background-color: #2980b9;
}
