/* GLOBAL */
body {
  font-family: "Inter", sans-serif;
  margin: 0;
  padding: 0;
  background: #ffffff; /* WHITE BACKGROUND */
  color: #222;
}

/* PAGE BACKGROUND */
.neo-bg {
  min-height: 100vh;
  padding: 40px 20px;
  background-image: url('../images/back4.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  display: flex;
  justify-content: center;
  align-items: center;
}

/* FADE */
.fade-in {
  animation: fade 0.7s ease forwards;
  opacity: 0;
}
@keyframes fade {
  to { opacity: 1; transform: translateY(0); }
}

/* FORM CONTAINER */
.form-wrapper {
  width: 100%;
  max-width: 520px;
  padding: 40px;
  border-radius: 22px;

  background: #fff; /* White card */
  border: 1px solid #eaeaea;
  box-shadow: 0 8px 25px rgba(0,0,0,0.06);

  color: #222;
}

/* TITLE */
.title-neo {
  text-align: center;
  margin-bottom: 25px;
  font-size: 26px;
  font-weight: 600;
  color: #0a6cff;
}

/* INPUT GROUP */
.input-group {
  position: relative;
  margin-bottom: 25px;
}

.input-group input {
  width: 100%;
  padding: 14px 12px;
  background: #fafafa;
  border: 1px solid #ccc;
  border-radius: 10px;
  color: #222;
  outline: none;
  transition: 0.2s;
}

.input-group input:focus {
  border-color: #0a6cff;
  box-shadow: 0 0 8px rgba(0,108,255,0.4);
}

/* LABEL FLOAT */
.input-group label {
  position: absolute;
  top: 50%;
  left: 14px;
  color: #777;
  pointer-events: none;
  transform: translateY(-50%);
  transition: 0.2s;
  background: white;
  padding: 0 5px;
}

.input-group input:focus + label,
.input-group input:not(:placeholder-shown) + label {
  top: -8px;
  font-size: 12px;
  color: #0a6cff;
}

/* UPLOAD AREA */
.upload-area {
  border: 1.8px dashed #b5b5b5;
  text-align: center;
  padding: 25px;
  border-radius: 12px;
  color: #444;
  margin-bottom: 25px;
  background: #fafafa;
  transition: 0.2s;
  position: relative;
}

.upload-area:hover {
  border-color: #0a6cff;
  background: #f0f7ff;
  color: #0a6cff;
}

.upload-area input {
  opacity: 0;
  position: absolute;
  inset: 0;
  cursor: pointer;
}

/* BUTTON */
.btn-neo {
  width: 100%;
  padding: 14px;
  border: none;
  background: linear-gradient(135deg,#007bff,#00aaff);
  border-radius: 12px;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  transition: 0.25s;
  text-align: center;
}

.btn-neo:hover {
  transform: scale(1.03);
  box-shadow: 0 0 12px rgba(0,138,255,0.5);
}

/* STATUS MESSAGE */
.status {
  margin-top: 15px;
  font-size: 14px;
  text-align: center;
  color: #444;
}
.status.loading {
  animation: pulse 1s infinite;
}
@keyframes pulse {
  0% { opacity: 0.3; }
  100% { opacity: 1; }
}

/* COMING SOON PAGE */
.center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.coming-card {
  text-align: center;
  padding: 40px;
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid #eaeaea;
  box-shadow: 0 6px 22px rgba(0,0,0,0.05);
}

.coming-title {
  color: #0a6cff;
  font-size: 2rem;
  margin-bottom: 10px;
}

.coming-sub {
  color: #777;
  margin-bottom: 22px;
}
