/* Google Fonts import */
@import url('https://fonts.googleapis.com/css?family=Roboto:400,500,700&display=swap');

*, *::before, *::after {
  box-sizing: border-box;
}
body {
  font-family: 'Roboto', Arial, sans-serif;
  color: #FFC857;
  min-height: 100vh;
  background: url('your-image.jpg') center center/cover no-repeat fixed, linear-gradient(135deg, #000 0%, #222 100%);
  animation: bgZoomMove 16s ease-in-out infinite alternate;
  position: relative;
  padding: 0;
  padding-top: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@keyframes bgZoomMove {
  0% { background-size: 100% 100%; background-position: 50% 50%; }
  25% { background-size: 110% 110%; background-position: 48% 52%; }
  50% { background-size: 120% 120%; background-position: 52% 48%; }
  75% { background-size: 110% 110%; background-position: 54% 50%; }
  100% { background-size: 100% 100%; background-position: 50% 50%; }
}
form {
  max-width: 700px;
  margin: 40px auto;
  background: rgba(20, 20, 20, 0.92);
  padding: 30px 25px;
  border-radius: 16px;
  box-shadow: 0 8px 32px 0 rgba(218, 165, 32, 0.18);
  animation: fadeInUp 1s cubic-bezier(0.23, 1, 0.32, 1);
  transition: box-shadow 0.3s;
  overflow: hidden;
  border: 2px solid #FFC857;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 24px;
  align-items: start;
}
.form-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
form .form-col-1 { grid-column: 1; }
form .form-col-2 { grid-column: 2; }
form h2, form button { grid-column: 1 / -1; }
@media (max-width: 800px) {
  form { grid-template-columns: 1fr; max-width: 98vw; }
  form h2, form button, form .form-col-1, form .form-col-2 { grid-column: 1 / -1; }
}
/* Inputs and selects share the same base look */
input, textarea, select {
  width: 100%;
  padding: 12px 14px;
  margin-bottom: 16px;
  border: 1.5px solid #FFC857;
  border-radius: 8px;
  font-size: 1rem;
  background: #181818;
  color: #FFC857;
  transition: border 0.2s, box-shadow 0.2s, background 0.2s;
  box-shadow: 0 1px 4px rgba(255,200,87,0.08);
}
input:focus, textarea:focus, select:focus {
  border: 2px solid #FFC857;
  outline: none;
  box-shadow: 0 2px 8px rgba(255,200,87,0.18);
  background: #222;
  color: #FFC857;
}
/* Make the native select match themed inputs */
.main-content form select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
  padding: 12px 40px 12px 14px; /* match inputs + space for arrow */
  background-color: #181818 !important;
  border: 1.5px solid #FFC857 !important;
  color: #FFC857 !important;
  border-radius: 8px !important;
  font-family: 'Roboto', Arial, sans-serif;
  line-height: 1.2;
  background-clip: padding-box;
  color-scheme: dark;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='22' height='22' viewBox='0 0 24 24' fill='none' stroke='%23FFC857' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E"),
    linear-gradient(180deg, #181818 0%, #181818 100%);
  background-repeat: no-repeat, no-repeat;
  background-position: right 12px center, 0 0;
  background-size: 22px 22px, auto;
}
/* Hide default arrow in IE */
.main-content form select::-ms-expand { display: none; }
/* Dropdown menu items (where supported) */
.main-content form select option {
  background: #181818;
  color: #FFC857;
}
.main-content form select option[disabled] {
  color: rgba(255, 200, 87, 0.6);
}
button {
  width: 100%;
  padding: 12px 0;
  background: linear-gradient(90deg, #FFC857 0%, #A67C00 100%);
  color: #181818;
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(255,200,87,0.18);
  transition: background 0.3s, transform 0.2s, color 0.2s;
  letter-spacing: 1px;
  text-shadow: 0 1px 0 #fff8;
}
button:hover {
  background: linear-gradient(90deg, #A67C00 0%, #FFC857 100%);
  color: #FFC857;
  transform: translateY(-2px) scale(1.03);
  text-shadow: 0 1px 0 #0008;
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}
.site-header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  background: rgba(10, 10, 10, 0.85);
  border-bottom: 2.5px solid #FFC857;
  box-shadow: 0 2px 16px rgba(0,0,0,0.18);
  padding: 0 0 0 0;
}
.company-header-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  padding: 14px 0 14px 0;
  margin: 0;
}
.company-logo {
  width: 64px;
  height: 64px;
  object-fit: contain;
  border-radius: 50%;
  background: rgba(0,0,0,0.12);
  box-shadow: 0 2px 16px rgba(255,200,87,0.18);
  border: 2px solid #FFC857;
  transition: transform 0.3s;
}
.company-logo:hover {
  transform: scale(1.07) rotate(-3deg);
}
.company-header {
  text-align: center;
  font-size: 2.1rem;
  font-weight: 800;
  letter-spacing: 2px;
  color: #FFC857;
  text-shadow: 0 4px 24px rgba(255,200,87,0.35), 0 1px 0 #000;
  margin: 0;
  font-family: 'Roboto', Arial, sans-serif;
  user-select: none;
}
form label {
  color: #FFC857;
  font-weight: 600;
  margin-bottom: 2px;
  margin-top: 6px;
  display: block;
  letter-spacing: 0.5px;
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
}
.loading-overlay {
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background: rgba(0,0,0,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  display: none;
}
.loading-overlay.active {
  display: flex;
}
.loader {
  border: 8px solid #222;
  border-top: 8px solid #FFC857;
  border-radius: 50%;
  width: 70px;
  height: 70px;
  animation: spin 1s linear infinite;
}
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
/* Prevent overlap of fixed header */
.main-content {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 1 0 auto;
  height: 100vh;
  margin-top: 0;
  margin-bottom: 0;
}

.navbar {
  background: #181818;
  padding: 0.5em 0;
  border-bottom: 2px solid #FFC857;
}
.navbar ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  gap: 2em;
}
.navbar li {
  display: inline;
}
.navbar a {
  color: #FFC857;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: color 0.2s;
  letter-spacing: 1px;
}
.navbar a:hover {
  color: #A67C00;
}

.welcome-dialogue {
  background: rgba(20, 20, 20, 0.92);
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(255,200,87,0.10);
  padding: 2em 2.5em;
  max-width: 500px;
  margin: 3em auto 0 auto;
  text-align: center;
  border: 2px solid #FFC857;
}
.welcome-dialogue h1 {
  margin-bottom: 0.5em;
  color: #FFC857;
  text-shadow: 0 1px 8px #18181888;
}
.welcome-dialogue p {
  color: #FFC857;
  font-size: 1.15em;
}
.welcome-buttons {
  display: flex;
  justify-content: center;
  gap: 2em;
  margin-top: 2em;
}
.welcome-btn {
  display: inline-block;
  padding: 1em 2.5em;
  background: linear-gradient(90deg, #FFC857 0%, #A67C00 100%);
  color: #181818;
  border: none;
  border-radius: 8px;
  font-size: 1.15em;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(255,200,87,0.18);
  transition: background 0.3s, color 0.2s, transform 0.2s;
  letter-spacing: 1px;
  text-shadow: 0 1px 0 #fff8;
}
.welcome-btn:hover {
  background: linear-gradient(90deg, #A67C00 0%, #FFC857 100%);
  color: #FFC857;
  transform: translateY(-2px) scale(1.03);
  text-shadow: 0 1px 0 #0008;
}
.centered-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
}
/* Remove centering for two-column layout */
.centered-form .form-col {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
}
.centered-form label {
  text-align: left;
  width: 100%;
}
.centered-form input,
.centered-form textarea {
  text-align: left;
  max-width: 100%;
  margin-left: 0;
  margin-right: 0;
}
.centered-form form {
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 24px;
  align-items: start;
  box-sizing: border-box;
  padding: 30px 25px;
}
@media (max-width: 800px) {
  .centered-form form {
    grid-template-columns: 1fr;
    max-width: 98vw;
    padding: 20px 5px;
  }
} 