body {
  font-family: "Arial", sans-serif;
  margin: 0;
  padding: 0;
  background-color: #171616;
  color: #ebf1f2;
}

.logo {
  height: 50px;
  width: auto;
  object-fit: contain;
  vertical-align: middle;
}

header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: #171616;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
  transition: all 0.3s ease;
  padding: 0.5rem 1rem;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.nav-links li {
  margin-left: 20px;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  padding: 10px;
  border-radius: 5px;
  transition: background-color 0.3s;
}

.nav-links a:hover {
  background-color: #555;
}

.links {
  color: #d30e0e;
}

.hero {
  background-color: #861bc4;
  color: #fff;
  text-align: center;
  padding: 80px 20px;
}

.hero h1 {
  font-size: 3.5em;
  margin: 0;
}

.hero p {
  font-size: 1.8em;
}

.cta-btn {
  background-color: #fff;
  color: #007bff;
  padding: 15px 30px;
  border: none;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s;
}

.cta-btn:hover {
  background-color: #e0e0e0;
}

.features {
  padding: 40px 20px;
  text-align: center;
}

.feature-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 1.5rem;
  margin-top: 40px;
}

.feature-link {
  text-decoration: none;
  color: inherit;
}

.feature {
  background: #ffffff;
  border-radius: 16px;
  padding: 25px;
  flex: 1 1 320px;
  max-width: 380px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.15);
}

.feature i {
  font-size: 2em;
  color: #007bff;
}

.feature h3 {
  margin-top: 10px;
  color: #000000;
}

.feature p {
  color: #555;
}

footer {
  background-color: #333;
  color: #fff;
  text-align: center;
  padding: 10px;
  position: fixed;
  bottom: 0;
  width: 100%;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.form-page {
  background: linear-gradient(135deg, #7b2ff7, #f107a3);
  font-family: "Poppins", "Inter", sans-serif;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.main-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0.5rem 0rem;
  background-color: #ac60d8;
}

.form-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: #fff;
  text-align: center;
  margin-bottom: 2rem;
  letter-spacing: 0.5px;
}

#postForm {
  background: #ffffff;
  padding: 1.8rem 2.5rem;
  border-radius: 1rem;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  width: 100%;
  max-width: 480px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-left: 5rem;
}

#postForm label {
  font-weight: 600;
  font-size: 1rem;
  color: #333;
}

#postForm input,
#postForm textarea {
  width: 100%;
  box-sizing: border-box;
  padding: 0.75rem 1rem;
  border: 1px solid #ccc;
  border-radius: 0.5rem;
  font-size: 1rem;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  background-color: #f9f9f9;
  color: #333;
}

#postForm input::placeholder,
#postForm textarea::placeholder {
  color: #aaa;
}

#postForm input:focus,
#postForm textarea:focus {
  border-color: #7b2ff7;
  box-shadow: 0 0 0 3px rgba(123, 47, 247, 0.2);
}

.button {
  background: linear-gradient(135deg, #7b2ff7, #f107a3);
  color: white;
  font-weight: 600;
  font-size: 1.1rem;
  padding: 0.8rem 1.5rem;
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(123, 47, 247, 0.3);
}

.eye-icon {
  cursor: pointer;
  position: absolute;
  right: 15px;
  top: 45%;
  transform: translateY(-50%);
  color: #f107a3;
}

@media (max-width: 768px) {
  .feature-grid {
    flex-direction: column;
    align-items: center;
  }

  .feature {
    width: 80%;
    margin-bottom: 20px;
  }
}

@media (max-width: 480px) {
  .form-title {
    font-size: 2rem;
  }

  #postForm {
    padding: 1.5rem;
  }
}

.card {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.4);
  box-shadow: inset 0 0 20px #ac60d87d;
  border-radius: 22px;
  padding: 20px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 25px;
  max-width: 450px;
  width: 90%;
  backdrop-filter: blur();
}

.card input {
  border-radius: 20px;
  border: none;
  padding: 8px;
}

label {
  display: inline-block;
}

button[type="submit"] {
  margin-top: 10px;
}

a {
  text-decoration: none;
  color: white;
}

a:hover {
  text-decoration: underline;
}

.signed {
  text-align: center;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
}

#signupForm {
  width: 100%;
  margin: 0 auto;
  padding: 0;
  display: block;
}

.input-grp {
  display: grid;
  grid-template-columns: 110px 1fr;
  align-items: center;
  gap: 10px;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 15px;
}

.input-grp label {
  width: auto;
  text-align: right;
}

.input-grp input {
  width: 95%;
}

.item p a {
  text-decoration: none;
  color: #666;
}
