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

body {
  background-color: #f9f9f9;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.login-wrapper {
  background-color: #fff;
  padding: 60px 50px;
  border-radius: 20px;
  box-shadow: 0 6px 40px rgba(0, 0, 0, 0.12);
  width: 100%;
  max-width: 520px;
  text-align: center;
}

.login-wrapper img.logo {
  width: 120px;
  margin-bottom: 30px;
}

.login-wrapper h2 {
  font-size: 30px;
  margin-bottom: 10px;
  font-weight: 600;
  color: #1E293B;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.login-wrapper p.subtitle {
  font-size: 16px;
  margin-bottom: 30px;
  color: #555;
}

.login-wrapper input[type="text"],
.login-wrapper input[type="email"],
.login-wrapper input[type="password"] {
  width: 100%;
  padding: 16px;
  margin-bottom: 20px;
  border: 1px solid #ccc;
  border-radius: 10px;
  font-size: 17px;
}

.login-wrapper .meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
  font-size: 15px;
}

.login-wrapper .meta label {
  display: flex;
  align-items: center;
  gap: 6px;
}

.login-wrapper .meta a {
  color: #10B981;
  text-decoration: none;
}

.login-wrapper button {
  width: 100%;
  padding: 16px;
  background-color: #10B981;
  color: white;
  border: none;
  border-radius: 10px;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.login-wrapper button:hover {
  background-color: #059669;
}

.login-wrapper .register {
  margin-top: 30px;
  font-size: 15px;
}

.login-wrapper .register a {
  color: #10B981;
  text-decoration: none;
  font-weight: 500;
}

.login-wrapper .or {
  margin-top: 25px;
  margin-bottom: 15px;
  color: #888;
  font-size: 15px;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 20px;
}

.social-icons a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid #ccc;
  color: #333;
  text-decoration: none;
  font-size: 16px;
  transition: background 0.2s ease;
}

.social-icons a:hover {
  background-color: #10B981;
  color: white;
  border-color: #10B981;
}

.error {
  color: red;
  font-weight: bold;
  margin-bottom: 15px;
}

/* ✅ Responsive për telefona dhe tableta */
@media (max-width: 500px) {
  .login-wrapper {
    padding: 40px 20px;
  }

  .login-wrapper h2 {
    font-size: 24px;
    white-space: normal;
    text-overflow: unset;
  }

  .login-wrapper p.subtitle {
    font-size: 14px;
    margin-bottom: 25px;
  }

  .login-wrapper input {
    padding: 14px;
    font-size: 16px;
  }

  .login-wrapper button {
    font-size: 17px;
    padding: 14px;
  }

  .login-wrapper .register {
    font-size: 14px;
  }
} 