/* Online Admission Form Styling */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: #f3f4f6;
  margin: 0;
  padding: 0;
}

.admission-form {
  max-width: 750px;
  margin: 40px auto;
  padding: 30px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}
.admission-form:hover {
  transform: translateY(-3px);
}
.admission-form h2 {
  text-align: center;
  margin-bottom: 25px;
  color: #222;
  font-size: 26px;
  border-bottom: 2px solid goldenrod;
  padding-bottom: 10px;
}

.admission-form label {
  display: block;
  margin: 14px 0 6px;
  font-weight: 600;
  color: #333;
}

.admission-form input,
.admission-form textarea,
.admission-form select {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 15px;
  outline: none;
  transition: border 0.3s;
}
.admission-form input:focus,
.admission-form textarea:focus,
.admission-form select:focus {
  border: 1px solid goldenrod;
  box-shadow: 0 0 6px rgba(218,165,32,0.4);
}

.admission-form textarea {
  min-height: 80px;
  resize: vertical;
}

.admission-form button {
  margin-top: 20px;
  width: 100%;
  padding: 14px;
  background: goldenrod;
  color: #fff;
  border: none;
  font-size: 17px;
  font-weight: bold;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
}
.admission-form button:hover {
  background: #b8860b;
  transform: scale(1.02);
}

/* Success & Error Box */
.success-box {
  background: #e6ffe6;
  border: 1px solid #00b300;
  padding: 18px;
  margin-bottom: 20px;
  border-radius: 8px;
}
.success-box h3 { 
  color: #006600; 
  margin-top: 0;
}
.error { 
  color: red; 
  font-weight: bold;
}

/* File Upload Fields */
.file-input {
  border: 1px dashed #aaa;
  padding: 10px;
  background: #fafafa;
  cursor: pointer;
  border-radius: 6px;
}
.file-input:hover {
  background: #f0f0f0;
}
