body {
  margin: 0;
  padding: 0;
  background: #0d0d0d;
  color: #f2f2f2;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  text-align: center;
  flex-direction: column;
}

.container {
  max-width: 500px;
  padding: 20px;
  margin-top: 2rem;
}

.logo {
  font-size: 2.5rem;
  font-weight: bold;
  color: #ffb400;
  margin-bottom: 0.5rem;
}

.tagline {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.subtle {
  color: #999;
  margin-bottom: 2rem;
}

.logo-image {
  max-width: 175px;
  margin-bottom: 1rem;
  filter: brightness(0) invert(1);
}

footer {
  margin-top: 3rem;
  font-size: 0.875rem;
  color: #666;
}

/* Form Layout */
.zcwf_lblLeft {
  width: 100%;
}
.zcwf_lblLeft .zcwf_row {
  display: flex;
  align-items: anchor-center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 1rem;
}

.zcwf_lblLeft .zcwf_col_lab {
  text-align: right;
  font-weight: 500;
  color: #ddd;
}

.zcwf_lblLeft .zcwf_col_fld {
  flex-grow: 1;
  max-width: 300px;
}

/* Input Field Styling */
.zcwf_lblLeft .zcwf_col_fld input[type="text"] {
  width: 90%;
  padding: 0.6rem;
  background-color: #111 !important;
  border: 1px solid #444 !important;
  border-radius: 4px;
  color: #fff !important;
  font-family: inherit;
}

.zcwf_lblLeft .zcwf_col_fld input::placeholder {
  color: #888;
  font-style: italic;
}

/* Button Styling */
.zcwf_lblLeft .zcwf_col_fld input[type="submit"],
.zcwf_lblLeft .zcwf_col_fld input[type="reset"] {
  font-size: 1.1rem;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  margin: 0.5rem 0.5rem 0 0;
  cursor: pointer;
}

.zcwf_lblLeft .zcwf_col_fld input[type="submit"] {
  background: #ffb400 !important;
  color: #000 !important;
  border: none !important;
  font-weight: bold;
}

.zcwf_lblLeft .zcwf_col_fld input[type="reset"] {
  background: #1a1a1a !important;
  color: #fff !important;
  border: 1px solid #999 !important;
}

/* Responsive fix */
@media all and (max-width: 600px) {
  .container {
    padding: 10px;
  }
  .zcwf_lblLeft .zcwf_row {
    flex-direction: column;
    align-items: flex-start;
  }
  .zcwf_lblLeft .zcwf_col_lab {
    text-align: left;
    width: 100%;
  }
  .zcwf_lblLeft .zcwf_col_fld {
    width: 100%;
    max-width: 100%;
  }
}
