body {
  margin: 0;
  padding: 0;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background: linear-gradient(135deg, #004466, #0088cc);
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.login-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}

.login-card {
  background: #fff;
  padding: 50px 40px;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  width: 100%;
  max-width: 420px;
  text-align: center;
  animation: fadeIn 0.6s ease-in-out;
}

.logo {
  margin-bottom: 35px;
}
.logo img {
  max-width: 280px;
  height: auto;
}

.input-group {
  margin-bottom: 25px;
  display: flex;
  flex-direction: column;
  align-items: flex-start; 
}

.input-group label {
  margin-bottom: 6px;
  font-weight: 600;
  color: #333;
  text-align: left; 
  width: 100%;
}

.input-group input {
  width: 100%; 
  padding: 12px 14px;
  border: 1px solid #ccc;
  border-radius: 8px;
  outline: none;
  font-size: 15px;
  transition: border-color 0.2s;
  text-align: left; 
}

}
.input-group input:focus {
  border-color: #0088cc;
}

.btn-login {
  width: 90%;
  max-width: 320px;
  padding: 14px;
  background: #0088cc;
  border: none;
  border-radius: 8px;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
  margin-top: 10px;
}
.btn-login i {
  margin-right: 8px;
}
.btn-login:hover {
  background: #006699;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}
