* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: #fff;
}

.login-container {
  background: #fff;
  padding: 3rem;
  max-width: 380px;
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: #333;
}
.logos{
  width:130px;
  height:130px;
}

.login-container:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.logo img {
  max-width: 80px;
  margin-bottom: 1.5rem;
  border-radius: 50%;
  transition: transform 0.4s ease;
}

.logo img:hover {
  transform: scale(1.15);
}

h1 {
  font-size: 1.8rem;
  color: #333;
  margin-bottom: 1.2rem;
}

.login-form h2 {
  font-size: 1.2rem;
  color: #555;
  margin-bottom: 1.5rem;
}

.login-form label {
  display: block;
  margin: 0.5rem 0 0.25rem;
  font-weight: bold;
  color: #444;
}

.login-form input[type="text"],
.login-form input[type="password"] {
  width: 100%;
  padding: 0.75rem;
  margin-bottom: 1rem;
  border: 1px solid #ddd;
  border-radius: 8px;
  background: #f9f9f9;
  transition: background 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.login-form input[type="text"]:focus,
.login-form input[type="password"]:focus {
  border-color: #667eea;
  background: #f0f3ff;
  box-shadow: 0 0 8px rgba(102, 126, 234, 0.3);
  outline: none;
}

.remember-me {
  display: flex;
  align-items: center;
  font-size: 0.9rem;
  color: #666;
}

.remember-me input {
  margin-right: 0.5rem;
}

button {
  width: 100%;
  padding: 0.85rem;
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 1.05rem;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
  text-transform: uppercase;
}

button:hover {
  background: linear-gradient(135deg, #5a67d8, #6b46c1);
  transform: translateY(-3px);
}

button:active {
  background: linear-gradient(135deg, #4959c2, #553c9a);
}

.forgot-password {
  margin-top: 1.5rem;
  font-size: 0.9rem;
}

.forgot-password a {
  color: #667eea;
  text-decoration: none;
  transition: color 0.3s ease;
}

.forgot-password a:hover {
  color: #5a67d8;
  text-decoration: underline;
}

/* Animations */
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

button:hover {
  animation: pulse 0.6s infinite;
}

/* Responsive adjustments */
@media (max-width: 500px) {
  .login-container {
    padding: 2rem;
  }

  .logo img {
    max-width: 70px;
  }

  h1 {
    font-size: 1.5rem;
  }
}
