/* ====== Base reset & sizing ====== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* ====== Page layout ====== */
body {
  font-family: Arial, sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  background-color: #ffffff;
  color: #111;
}

/* ====== Preloader ====== */
.preloader {
  position: fixed;
  inset: 0;
  background-color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  font-size: 24px;
  color: white;
}

/* ====== Sticky banner/header ====== */
.sticky-banner {
  position: sticky;
  top: 0;
  background-color: #ffffff;
  color: white;
  text-align: center;
  z-index: 1000;
  width: 100%;
}

/* ====== Top info row ====== */
.column {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin: 20px;
  justify-content: space-evenly;
  flex-wrap: wrap;
  text-align: center;
  color: #025e8c;
  gap: 10px;
}

.text {
  margin: 10px 0;
  font-size: 20px;
}

.logo {
  font-size: 24px;
  font-weight: bold;
  color: white;
}

/* ====== Main ====== */
main {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  flex-grow: 1;
  padding: 0;
}

/* ====== Form card ====== */
.form-container {
  background-color: #ffffff;
  margin: 0 auto;
  border-radius: 0;
  padding: 50px 30px;
  width: 100%;
  max-width: 480px;
  box-shadow: none;
 
}

/* ====== Form heading ====== */
.form-container h2,
.form-container .form-title {
  color: #42265e;
  font-size: 26px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 50px;
}

/* ====== Form ====== */
.user-form {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

/* Input row with icon */
.input-container {
  position: relative;
  width: 100%;
  display: block;
}

/* Icon inside input */
.input-container i {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  color: #888;
  font-size: 18px;
  pointer-events: none;
}

/* Text inputs — bottom border only, dark line */
.user-form input,
.input-container input {
  padding: 12px 0 12px 28px;
  border: none;
  border-bottom: 2px solid #333;
  border-radius: 0;
  width: 100%;
  font-size: 18px;
  font-weight: 400;
  font-family: system-ui, Arial, sans-serif;
  background: transparent;
  outline: none;
  color: #333;
}

.user-form input::placeholder,
.input-container input::placeholder {
  color: #999;
  font-size: 18px;
  font-weight: 400;
}

.user-form input:focus,
.input-container input:focus {
  border-bottom-color: #42265e;
  outline: none;
}

/* Submit button — light gray, rounded, centered */
.user-form button {
  padding: 16px 50px;
  border: none;
  border-radius: 8px;
  background-color: #c84318;
  color: #ffffff;
  cursor: pointer;
  transition: background-color 0.25s ease, color 0.25s ease, transform 0.05s ease;
  margin-top: 20px;
  font-size: 18px;
  font-weight: 400;
  width: auto;
  align-self: center;
}

.user-form button:hover {
  background-color: #ccc;
  color: #555;
}

.user-form button:active {
  transform: translateY(1px);
}

/* ====== Banner / hero images ====== */
.banner-container {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 600px;
  margin: auto;
}

.banner-slide {
  display: none;
  width: 100%;
}

.banner-slide.active {
  display: block;
}

.banner-slide img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0 0 10px 10px;
}

/* ====== Footer ====== */
footer {
  background-color: #333;
  color: white;
  text-align: center;
  width: 100%;
}

/* ====== Small-screen tweaks ====== */
@media (max-width: 360px) {
  .form-container { padding: 30px 16px; }
  .text { font-size: 18px; }
  .user-form input,
  .input-container input { font-size: 16px; }
}

/* ====== Larger-screen polish ====== */
@media (min-width: 768px) {
  .form-container { max-width: 520px; padding: 60px 40px; }
}
