/* Make sure particles canvas covers full screen */
html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  overflow: hidden;
  font-family: sans-serif;
}

/* particles.js container */
#particles-js {
  position: fixed;
  width: 100%;
  height: 100%;
  background: #eafaf1;
  z-index: 0;
}





* {
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}


header {
  text-align: center;
  padding: 30px 20px 10px;
  z-index: 1;
  position: relative;
}

.logo {
  height: 70px;
}

#Frame0 {
  text-align: center;
  padding: 10px 20px 20px;
  z-index: 1;
  position: relative;
}

#Frame0 h1 {
  font-size: 26px;
  margin: 10px 0;
  color: #1b5e20;
}

#Frame0 p {
  font-size: 14px;
}

#Frame0 a {
  color: #24890d;
  text-decoration: none;
  font-weight: 500;
}

#Frame0 a:hover {
  text-decoration: underline;
}

form {
  background: white;
  max-width: 400px;
  margin: 30px auto;
  padding: 30px 25px;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 1;
  animation: fadeIn 1s ease-in-out;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

form h3 {
  margin-top: 0;
  margin-bottom: 25px;
  font-size: 22px;
  text-align: center;
  color: #1b5e20;
}

label {
  display: block;
  margin-bottom: 15px;
  color: #333;
}

.Input {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #ccc;
  border-radius: 10px;
  font-size: 16px;
  transition: border-color 0.3s;
}

.Input:focus {
  border-color: #24890d;
  outline: none;
  box-shadow: 0 0 0 3px rgba(36, 137, 13, 0.2);
}

.Button3 {
  background: linear-gradient(135deg, #24890d, #66bb6a);
  color: #fff;
  border: none;
  padding: 12px;
  border-radius: 10px;
  font-size: 16px;
  width: 100%;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
}

.Button3:hover {
  background: linear-gradient(135deg, #1b5e20, #4caf50);
  transform: scale(1.02);
}

.msg {
  text-align: center;
  color: #c62828;
  font-weight: 500;
  margin-bottom: 20px;
}
