* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: Arial, sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background-color: #f8f9fa;
}

.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;
}

.sticky-banner {
        position: sticky;
    top: 0;
    background-color: #ffffff;
    color: white;
    /* padding: 15px; */
    text-align: center;
    z-index: 1000;
    width: 100%;
}

 .column {
           display: flex;
    flex-direction: row;
    align-items: center;
    margin: 20px;
    align-content: flex-end;
    justify-content: space-evenly;
    flex-wrap: nowrap;
    text-align: center;
    color: #025e8c;
        }
        .text {
            margin: 10px 0; /* Space between the texts */
            font-size: 20px; /* Adjust font size as needed */
        }

.logo {
    font-size: 24px;
    font-weight: bold;
    color: white;
}

main {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    flex-grow: 1; /* Allow main to grow and center content */
}

.form-container {
         background-color: #a20e37;
         margin-top: 10px;
    border-radius: 10px;
    padding: 32px;
    width: 102%;
    max-width: 351px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.user-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.user-form input {
   padding: 10px;
    border: none;
    border-radius: 5px;
    width: 120%;
    box-shadow: 2px 3px 19px 1px #a20e37;
    font-size: 15px;
    font-weight: 600;
    font-family: system-ui;
}

.input-container {
  position: relative;
  width: fit-content;
}

.input-container i {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  color: #d7577b; /* Change icon color here */
}

.input-container input {
  padding-left: 35px; /* Make room for icon */
  
  font-size: 16px;
}



.user-form button {
   padding: 22px;
    border: none;
    border-radius: 8px;
    background-color: #fbee1b;
    color: #017036;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-top: 10px;
    font-size: 15px;
    font-weight: 600;

}

.user-form button:hover {
    background-color: #004494;
}

.banner-container {
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 600px; /* Adjust to your preferred width */
    margin: auto;
}

.banner-slide {
    display: none; /* Hide all slides by default */
    width: 100%;
}

.banner-slide.active {
    display: block; /* Show the active slide */
}

.banner-slide img {
       width: 100%;
    height: auto;
    display: block;
    border-radius: 0px 0px 10px 10px;
}

footer {
  background-color: #333;
    color: white;
    text-align: center;
    /* padding: 10px; */
    width: 100%;
}
