/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', sans-serif;
}

.wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  height: auto;
  min-height: 80vh;
  padding: 20px;
  /* background-color: #002e24; */
}

/* Container Layout - Single Panel */
.container {
  width: 100%;
  max-width: 600px;
  background-color: rgba(29, 43, 58, 0.9);
  backdrop-filter: blur(4px);
  border-radius: 16px;
  padding: 20px 30px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

/* Form Header */
.auth-form h3 {
  margin: 5px 0 5px;
  font-size: 22px;
  color: white;
  text-align: center;
}

.auth-form .muted {
  color: #888;
}

/* Form Layout */
.auth-form form {
  display: flex;
  flex-direction: column;
}

.auth-form label {
  margin-top: 15px;
  font-size: 14px;
  color: #ccc;
}

/* Inputs */
.auth-form input[type="text"],
.auth-form input[type="email"],
.auth-form input[type="password"],
.auth-form select {
  padding: 13px;
  margin-top: 5px;
  font-size: 15px;
  border-radius: 8px;
  background-color: #3c4b5c;
  border: 1px solid #4e5d6d;
  color: #f0f0f0;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.auth-form input:focus,
.auth-form select:focus {
  outline: none;
  background-color: #445466;
}

.my-dropdown {
    background-color: #f9f9f9;
    border-radius: 8px;
    padding: 8px;
    font-size: 14px;
}

/* Submit Button */
.signup-btn {
  background: #3fd0b3;
  color: #002e24;
  padding: 14px;
  margin-top: 23px;
  border: none;
  border-radius: 30px;
  font-size: 25px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.signup-btn:hover {
  background: #5be5c4;
}

/* Footer Text */
.footer-text {
  font-size: 15px;
  text-align: center;
  margin-top: 20px;
  color: #aaa;
}

/* Footer Buttons */
.footer {
  display: flex;
  justify-content: flex-end;
  gap: 15px;
  margin-top: 60px;
  flex-wrap: wrap;
}

.footer button {
  padding: 6px 15px;
  border-radius: 10px;
  border: 2px solid #3fd0b3;
  background: transparent;
  color: #ccc;
  cursor: pointer;
  font-size: 15px;
  transition: all 0.3s ease;
}

/* ============================
   ✅ Responsive Styles
=============================== */

@media screen and (max-width: 768px) {
  .container {
    padding: 40px 25px;
  }

  .auth-form h3 {
    font-size: 20px;
  }

  .signup-btn {
    font-size: 15px;
  }

  .footer {
    justify-content: center;
    margin-top: 40px;
  }
}

@media screen and (max-width: 480px) {
  .container {
    padding: 30px 20px;
    border-radius: 12px;
  }

  .auth-form label {
    font-size: 13px;
  }

  .auth-form input,
  .auth-form select {
    font-size: 14px;
    padding: 12px;
  }

  .signup-btn {
    font-size: 14px;
    padding: 12px;
  }

  .footer-text {
    font-size: 13px;
  }

  .footer button {
    font-size: 14px;
    padding: 5px 12px;
  }
}
