* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
/* Style for webkit scroll bars */
::-webkit-scrollbar {
  width: 0px;
  height: 0px;
}

::-webkit-scrollbar-track {
  background: gray;
  border-radius: 0px;
}

::-webkit-scrollbar-thumb {
  background: #007bff;
  border-radius: 0px;
}

::-webkit-scrollbar-thumb:hover {
  background: black;
}
/* For webkit browsers (Chrome, Safari) */
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* For Firefox */
input[type="number"] {
  -moz-appearance: textfield;
}

/* Optional: to make it look better by removing any border or outline */
input[type="number"] {
  appearance: none;
  border: 1px solid #ccc;
  padding: 5px;
}

body {
  font-family: "Roboto", sans-serif;
  background: linear-gradient(120deg, #121212, #1e3c72);
  color: #f0f0f0;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100vh;
}
header {
  text-align: center;
  margin-top: 20px;
}
#remainingDays {
  font-size: 1.2rem;
  color: #58a6ff;
  animation: fadeIn 1s ease-in-out;
}
.title {
  font-size: 2.5em;
  font-weight: 700;
  color: #ff5722;
  margin-bottom: 10px;
}

.subtitle {
  font-size: 1.2em;
  color: #d9d9d9;
}
.form-container {
  background: #212121;
  border-radius: 10px;
  padding: 20px;
  width: 90%;
  max-width: 600px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
  margin: 20px 0;
}
fieldset {
  border: none;
  margin-bottom: 15px;
}
.legend {
  font-size: 1.5em;
  font-weight: 700;
  color: #03a9f4;
  margin-bottom: 10px;
}
.form-group {
  margin: 25px 0;
  position: relative;
}

input,
select,
textarea {
  width: 100%;
  padding: 10px;
  border: 2px solid #333;
  border-radius: 5px;
  background: #121212;
  color: #f0f0f0;
  font-size: 1em;
  box-sizing: border-box;
}
input:focus,
select:focus,
textarea:focus {
  border-color: #03a9f4;
  outline: none;
}
form select[multiple] {
  height: auto;
}

.member-input {
  margin-bottom: 20px;
  padding: 15px;
  border: 1px solid #333;
  border-radius: 8px;
  background: #252525;
}

.member-input h3 {
  margin-top: 0;
  color: #20b7ee;
}
label {
  position: absolute;
  top: 50%;
  left: 15px;
  transform: translateY(-50%);
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  pointer-events: none;
  transition: 0.3s ease;
}
input:focus + label,
input:not(:placeholder-shown) + label {
  top: -10px;
  font-size: 0.85rem;
  color: #03a9f4;
}
.styled-select:focus + .floating-label {
  top: -10px;
  font-size: 0.85rem;
  color: #03a9f4;
}

.styled-select.filled + .floating-label {
  top: -10px;
  font-size: 0.85rem;
  color: #03a9f4;
}
.button-group {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-top: 15px;
}

form .btn {
  flex: 1;
  padding: 10px;
  font-weight: bold;
  border-radius: 5px;
  cursor: pointer;
  border: none;
}

form .btn.submit {
  background: #20b7ee;
  color: #1e1e1e;
}

form .btn.clear {
  background: #f44336;
  color: #fff;
}

form .btn:hover {
  opacity: 0.9;
}
#honeypot {
  display: none;
  visibility: hidden;
}
#custom-language-container,
#custom-campus-container {
  display: none;
}
.payment-gateways {
  display: none;
}
.esewa,
.bank {
  display: none;
  width: 200px;
  height: auto;
}

/* Photo Container */
.photo-container {
  text-align: center;
  margin: 20px;
  width: 100%;
}

/* Thumbnail */
.photo-thumbnail {
  width: min(80%, 300px);
  height: auto;
  border-radius: 8px;
  cursor: pointer;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.photo-thumbnail:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
}

/* Download Button */
.download-btn {
  display: inline-block;
  margin: 10px auto;
  padding: 10px 20px;
  background-color: #007bff;
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.download-btn:hover {
  background-color: #0056b3;
}

/* Fullscreen Overlay */
.photo-fullscreen {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 1000;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.fullscreen-img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 8px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.5);
}

/* Close Button */
.close-btn {
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 30px;
  color: white;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.close-btn:hover {
  transform: scale(1.2);
}

/* Footer */
.footer {
  margin: 20px 0;
  padding: 10px 0;
  text-align: center;
  font-size: 0.9em;
  color: #d9d9d9;
}

.footer p {
  margin: 0;
}

.footer p span {
  color: #ff5722;
}
