* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Jua", sans-serif;

  /* Chrome and Opera */
  user-select: none;

  /* Safari */
  -webkit-user-select: none;

  /* Konqueror HTML */
  -khtml-user-select: none;

  /* Firefox */
  -moz-user-select: none;

  /* Internet Explorer/Edge */
  -ms-user-select: none;
}

:link {
  color: #6f6;
}

:visited {
  color: #66f;
}

body {
  font-family: 'Jua', sans-serif;
  background: #e8ffe8;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  margin: 0;
}

.card {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(16px);
  border: 1.5px solid rgba(204, 255, 204, 0.6);
  border-radius: 20px;
  padding: 40px 32px;
  text-align: center;
  max-width: 360px;
  width: 100%;
  box-shadow: 0 4px 24px rgba(100, 160, 100, 0.12);
}

.logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
}

h1 {
  font-size: 1.4rem;
  color: #1a2e1a;
  margin-bottom: 8px;
}

p {
  color: #4a6b4a;
  font-size: 0.9rem;
  margin-bottom: 24px;
}

input {
  width: 100%;
  padding: 12px 16px;
  background: #d4fad4;
  border: 1.5px solid #99ee99;
  border-radius: 10px;
  font-family: 'Jua', sans-serif;
  font-size: 1rem;
  color: #1a2e1a;
  outline: none;
  box-sizing: border-box;
}

button {
  margin-top: 12px;
  width: 100%;
  padding: 12px;
  background: #ccffcc;
  color: #1a3d1a;
  border: 1.5px solid #99ee99;
  border-radius: 10px;
  font-family: 'Jua', sans-serif;
  font-size: 1rem;
  cursor: pointer;
}

button:hover {
  background: #99ee99;
}