@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;700&display=swap');

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  background-color: #eef8e3;
  padding: 20px;
}

.container {
  width: 100%;
  max-width: 750px;
  padding: 28px;
  border-radius: 12px;
  background-color: #ffffff;
  box-shadow: 0 15px 25px rgba(0, 0, 0, 0.1);
}

img {
  width: 100px;
  height: 100px;
  display: block;
  margin: 0 auto 20px auto;
}

h2 {
  font-size: clamp(1.5rem, 2vw, 2rem);
  font-weight: 700;
  text-align: center;
  color: #595da7;
  padding-bottom: 10px;
  border-bottom: 1px solid #ccc;
}

.content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 20px 0;
  gap: 10px;
}

.input-box {
  flex: 1 1 45%;
  display: flex;
  flex-direction: column;
}

.input-box label {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 5px;
}

.input-box input,
.input-box select {
  height: 38px;
  padding: 0 12px;
  border-radius: 8px;
  border: 1px solid #ccc;
  transition: all 0.3s ease;
  outline: none;
}

.input-box input:focus,
.input-box input:valid,
.input-box select:focus {
  border-color: #85c440;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
}

.button-container {
  margin-top: 20px;
}

.button-container button,
.button-container a {
  display: block;
  width: 100%;
  font-size: 1rem;
  padding: 10px 20px;
  border-radius: 8px;
  border: none;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.button-container button {
  background-color: #85c440;
  color: white;
  border: 1px solid transparent;
}

.button-container button:hover {
  background-color: #5c8c1f;
}

.button-container a {
  background-color: transparent;
  color: #85c440;
  border: 1px solid #85c440;
  margin-top: 10px;
}

.button-container a:hover {
  background-color: #5c8c1f;
  color: white;
  border-color: #5c8c1f;
}
.blinking {
    animation: blink 1s infinite;
    color: red;
    font-weight: bold;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}



/* Responsive Styling */
@media (max-width: 768px) {
  .content {
    flex-direction: column;
  }

  .input-box {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 20px;
  }

  .button-container button,
  .button-container a {
    font-size: 0.95rem;
    padding: 8px 16px
