body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #fff0f5;
}



/* nav-bari */

.menu-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #ffc0cb;
  padding: 15px 30px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.menu-links a {
  color: #fff;
  text-decoration: none;
  margin: 0 15px;
  font-weight: bold;
  font-size: 18px;
  transition: all 0.3s ease;
  padding: 8px 15px;
  border-radius: 8px;
}

.menu-links a:hover {
  background-color: #ffb6c1;
  color: #000;
}


.menu-right {
  position: relative;
}

.dropbtn {
  background-color: #ffc0cb;
  color: white;
  font-weight: bold;
  padding: 8px 15px;
  font-size: 18px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dropbtn:hover {
  background-color: #ffb6c1;
  color: #000;
}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  right: 0;
  background-color: #ffc0cb;
  min-width: 120px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  border-radius: 8px;
  z-index: 1;
}

.dropdown-content a {
  color: #fff;
  padding: 10px 15px;
  text-decoration: none;
  display: block;
  font-weight: bold;
  transition: all 0.3s ease;
}

.dropdown-content a:hover {
  background-color: #ffb6c1;
  color: #000;
}

.dropdown:hover .dropdown-content {
  display: block;
}

/* sign up*/
.signup-section {
  margin: 120px auto;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Poppins", sans-serif;
}

.signup-card {
  width: 100%;
  max-width: 360px;
  background: #ffffff;
  padding: 36px 30px;
  border-radius: 22px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.signup-card h2 {
  font-size: 1.9rem;
  color: #333333;
  margin-bottom: 8px;
  font-weight: 600;
}

.signup-subtitle {
  font-size: 0.9rem;
  color: #777777;
  margin-bottom: 28px;
}

.signup-form input {
  width: 100%;
  padding: 13px 15px;
  margin-bottom: 15px;
  border-radius: 12px;
  border: 1.5px solid #e6e6e6;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.signup-form input::placeholder {
  color: #aaaaaa;
}

.signup-form input:focus {
  border-color: #f0a6c2;
  box-shadow: 0 0 0 3px rgba(240, 166, 194, 0.25);
}

.signup-form button {
  width: 100%;
  padding: 13px;
  margin-top: 8px;
  border: none;
  border-radius: 14px;
  background: #333333;
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.signup-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

.signup-footer {
  margin-top: 18px;
  font-size: 0.85rem;
  color: #888888;
}

.signup-footer a {
  color: #f08ab6;
  text-decoration: none;
  font-weight: 500;
}

.signup-footer a:hover {
  text-decoration: underline;
}






/* qvemota footeri */
.footer {
  background-color: #ffc0cb;
  padding: 40px 20px 30px;
  text-align: center;
  margin-top: 80px;
}

.footer-title {
  font-size: 24px;
  font-weight: bold;
  color: #fff;
  margin-bottom: 10px;
}

.footer-text {
  font-size: 16px;
  color: #fff;
  margin-bottom: 20px;
}

.footer-links {
  margin-bottom: 20px;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
  margin: 0 12px;
  font-weight: bold;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #333;
}

.footer-copy {
  font-size: 14px;
  color: #fff;
  opacity: 0.8;
}