/* Form Styles */

.form-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
}

.form-header {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  margin-bottom: 2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.form-header img {
  height: 60px;
  margin-bottom: 1rem;
}

.form-header h1 {
  color: #0c71cc;
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.form-subtitle {
  color: #666;
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.award-details {
  background: #f8f9fa;
  padding: 1.5rem;
  border-radius: 10px;
  margin-bottom: 1.5rem;
  border-left: 4px solid #0c71cc;
}

.award-details p {
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.mission-statement {
  background: linear-gradient(135deg, #0c71cc, #0c71cc);
  color: white;
  padding: 2rem;
  border-radius: 10px;
  font-size: 1.1rem;
  line-height: 1.7;
}

.eligibility-section,
.award-includes-section,
.jury-section,
.period-section,
.guidelines-section {
  background: white;
  /* padding: 2rem; */
  border-radius: 15px;
  margin-bottom: 2rem;
  /* box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1); */
}

.eligibility-section h2,
.award-includes-section h2,
.jury-section h2,
.period-section h2,
.guidelines-section h2 {
  color: #0c71cc;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.eligibility-section ul,
.guidelines-list {
  list-style: none;
  padding: 0;
}

.eligibility-section li,
.guidelines-list li {
  padding: 0.5rem 0;
  font-size: 1.1rem;
}

.award-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.award-item {
  background: #f8f9fa;
  padding: 1.5rem;
  border-radius: 10px;
  text-align: center;
  font-weight: 500;
  border: 2px solid #0c71cc;
  color: #0c71cc;
}

.jury-list {
  list-style: none;
  padding: 0;
}

.jury-list li {
  padding: 0.8rem 0;
  border-bottom: 1px solid #eee;
  font-size: 1rem;
  line-height: 1.6;
}

.jury-list li:last-child {
  border-bottom: none;
}
 
.period-text {
  font-size: 1.3rem;
  font-weight: 600;
  color: #0c71cc;
  margin-bottom: 1rem;
}

.nomination-form {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
}

.form-title {
  color: #0c71cc;
  font-size: 2rem;
  margin-bottom: 2rem;
  text-align: center;
  font-weight: 600;
}

.form-section {
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #eee;
}

.form-section:last-child {
  border-bottom: none;
}

.form-section h3 {
  color: #0c71cc;
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.section-note {
  color: #666;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.note {
  color: #666;
  font-style: italic;
  margin-top: 1rem;
  padding: 1rem;
  background: #f8f9fa;
  border-radius: 8px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-group label {
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.8rem;
  border: 2px solid #e1e5e9;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #0c71cc;
}

.gender-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 1rem;
  margin-top: 0.5rem;
}

.gender-options label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: normal;
}

.radio-group,
.checkbox-grid {
  display: grid;
  gap: 1rem;
}

.checkbox-grid {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.radio-label,
.checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  cursor: pointer;
  padding: 0.8rem;
  border-radius: 8px;
  transition: background-color 0.3s ease;
}

.radio-label:hover,
.checkbox-label:hover {
  background-color: #f8f9fa;
}

.radio-custom,
.checkbox-custom {
  width: 20px;
  height: 20px;
  border: 2px solid #0c71cc;
  border-radius: 50%;
  position: relative;
  flex-shrink: 0;
}

.checkbox-custom {
  border-radius: 4px;
}

.radio-label input[type="radio"],
.checkbox-label input[type="checkbox"] {
  display: none;
}

.radio-label input[type="radio"]:checked + .radio-custom::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
  background: #0c71cc;
  border-radius: 50%;
}

.checkbox-label input[type="checkbox"]:checked + .checkbox-custom::after {
  content: "✓";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #0c71cc;
  font-weight: bold;
  font-size: 14px;
}

.file-upload-section {
  margin: 1rem 0;
}

.file-upload-label {
  display: block;
  cursor: pointer;
}

.file-upload-area {
  border: 2px dashed #0c71cc;
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  background: #fafafa;
}

.file-upload-area:hover {
  background: #f0f0f0;
  border-color: #0c71cc;
}

.file-upload-area svg {
  color: #0c71cc;
  margin-bottom: 1rem;
}

.file-upload-area p {
  font-weight: 500;
  color: #333;
}

.word-count {
  text-align: right;
  margin-top: 0.5rem;
  font-size: 0.9rem;
  color: #666;
}

.declaration {
  background: #f8f9fa;
  padding: 1.5rem;
  border-radius: 8px;
  border: 1px solid #e1e5e9;
}

.form-submit {
  text-align: center;
  margin-top: 2rem;
}

.confirmation-note {
  margin-bottom: 1.5rem;
  color: #666;
  font-size: 1rem;
}

.submit-btn {
  background: linear-gradient(135deg, #0c71cc, #0c71cc);
  color: white;
  border: none;
  padding: 1.2rem 3rem;
  border-radius: 50px;
  font-size: 1.2rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(212, 175, 55, 0.4);
}

.contact-info {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-info h3 {
  color: #0c71cc;
  margin-bottom: 1rem;
}

.contact-info a {
  color: #0c71cc;
  text-decoration: none;
}

.contact-info a:hover {
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
  .form-title {
 
  font-size: 1.4rem;

}
  .form-container {
    padding: 15px;
  }

  .form-header,
  .nomination-form {
    padding: 1.5rem;
  }

  .form-header h1 {
    font-size: 2rem;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .checkbox-grid {
    grid-template-columns: 1fr;
  }

  .award-grid {
    grid-template-columns: 1fr;
  }

  .gender-options {
    grid-template-columns: 1fr;
  }
}

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

}
  .form-header h1 {
    font-size: 1.8rem;
  }

  .form-section h3 {
    font-size: 1.1rem;
  }

  .submit-btn {
    width: 100%;
    padding: 1rem 2rem;
  }
}
