@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}



/* Container */
.form-container {
  padding: 40px 20px;
}

/* Card */
.form-card {
  max-width: 2250px;
  margin: auto;
  background: #111;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.6);
}

/* Title */
.form-card h2 {
  text-align: center;
  margin-bottom: 30px;
  font-size: 26px;
  font-weight: 600;
  color: #fff;
}

/* Grid */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* Input group */
.input-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}


.input-group label {
  font-size: 13px;
  color: #ffffff;
}

/* Inputs */
.input-group input,
.input-group select {
  width: 100%;
  padding: 14px;
  border-radius: 10px;
  border: 1px solid #333;
  background: #0d0d0d;
  color: #fff;
  font-size: 14px;
  transition: 0.3s;
}

/* Placeholder */
.input-group input::placeholder {
  color: #666;
}

/* Focus */
.input-group input:focus,
.input-group select:focus {
  border-color: #6ea8fe;
  box-shadow: 0 0 0 2px rgba(110,168,254,0.2);
  outline: none;
}

/* Dropdown */
.input-group select {
  appearance: none;
  cursor: pointer;
}

/* Upload Section */
.upload-section {
  margin-top: 25px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.upload-box {
  border: 1px dashed #444;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  background: #0d0d0d;
  cursor: pointer;
  transition: 0.3s;
  color: #aaa;
}

.upload-box:hover {
  border-color: #F9C90F;
  background: #483d0f;
  color: #fff;
}

.upload-box input {
  display: none;
}

/* Button */
button {
  display: block;
  margin: 60px auto 0; /* center it */
  padding: 16px 40px; /* more horizontal padding */
  
  border: none;
  border-radius: 14px;

  background: linear-gradient(135deg, #F9C90F, #ffd52c);
  color: #000; /* better contrast on yellow */

  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.5px;

  cursor: pointer;
  transition: all 0.3s ease;

  /* make it not full width */
  width: auto;
  min-width: 200px;
  min-height: 50px;
}

/* Hover effect */
button:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 10px 25px rgba(249, 201, 15, 0.4);
}

/* Click effect */
button:active {
  transform: translateY(1px) scale(0.98);
  box-shadow: 0 5px 15px rgba(249, 201, 15, 0.3);
}

button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px #F9C90F;
}
.input-group select {
  background-image: url("data:image/svg+xml;utf8,<svg fill='white' height='20' viewBox='0 0 20 20' width='20' xmlns='http://www.w3.org/2000/svg'><path d='M5 7l5 5 5-5z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 16px;
}
/* Mobile */
@media (max-width: 600px) {
  .form-grid {
    grid-template-columns: 1fr;
  }
}
