* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: Arial, sans-serif;
    min-height: 100vh;
    background-color: #f8f9fa;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.preloader {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    font-size: 24px;
    color: white;
}

.select-container {
  display: flex;
  align-items: center;
  background-color: #fff;
  border-radius: 12px;
  padding: 12px 15px;
 
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  position: relative;
}

.select-container i {
  margin-right: 10px;
  color: #d94d73;
  font-size: 18px;
}

.select-wrapper {
  position: relative;
  flex: 1;
}

/* Actual <select> styling */
.custom-select {
  width: 100%;
  padding: 8px 30px 8px 10px;
  font-size: 16px;
  color: #333;
  background: transparent;
  border: none;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  outline: none;
  cursor: pointer;
}

/* Custom arrow */
.select-wrapper::after {
  content: "\f078";
  font-family: "FontAwesome";
  font-size: 14px;
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: #999;
}

/* Remove default arrow in Firefox */
.custom-select:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 #000;
}


.sticky-banner {
    position: sticky;
    top: 0;
    background-color: #ffffff;
    text-align: center;
    z-index: 1000;
    width: 100%;
}

.column {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin: 20px 0;
    color: #025e8c;
    text-align: center;
    gap: 20px;
}

.text {
    font-size: 20px;
    margin: 10px 0;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: white;
}

main {
    display: flex;
    justify-content: center;
    width: 100%;
    flex-grow: 1;
    padding: 10px;
}

.form-container {
    background-color: #fdfdfd;
    border-radius: 10px;
    padding: 20px;
    width: 100%;
    max-width: 500px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.user-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.input-container {
    position: relative;
    width: 100%;
}

.input-container i {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: #d7577b;
}

.input-container input {
    padding: 12px 10px 12px 35px;
    font-size: 16px;
    width: 100%;
    border: none;
    border-radius: 5px;
    box-shadow: 2px 3px 19px 1px #d7d7d7;
    font-family: system-ui;
    font-weight: 600;
}

.user-form button {
    padding: 15px;
    border: none;
    border-radius: 8px;
    background-color: #fbee1b;
    color: #017036;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.user-form button:hover {
    background-color: #004494;
    color: white;
}

.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 {
   background-color: #0857a9;
    color: white;
    text-align: center;
    width: 100%;
    padding: 10px 0;
    font-family: system-ui;
    font-weight: 600;

}

/* Responsive Tweaks */
@media (max-width: 600px) {
    .form-container {
        padding: 15px;
        box-shadow: none;
        border-radius: 0;
    }

    .user-form button {
        font-size: 15px;
        padding: 14px;
    }

    .input-container input {
        font-size: 15px;
    }

    .text {
        font-size: 18px;
    }

    .column {
        flex-direction: column;
        gap: 10px;
    }
}
