* {
    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;
    
    background-color: #f8f9fa;
}

.align-right {
    text-align: right;
    margin-top: 20px;       /* Adjust this as needed */
    margin-right: 10px;  /* Reduce space from right side */
     color: black;
    margin-top: 20px;
    font-family: system-ui;
    font-weight: 600;
    font-size: 20px;
}

.align-righte {
    text-align: right;
    margin-top: 20px;       /* Adjust this as needed */
    margin-right: 10px;  /* Reduce space from right side */
     color: #009688;
    margin-top: 20px;
    font-family: system-ui;
    font-weight: 600;
    font-size: 20px;
}


.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;
}

.custom-file {
    position: relative;
    display: flex;
    align-items: center;
    background-color: #fff;
    border-radius: 5px;
    padding: 8px 12px;
    color: #333;
    font-size: 14px;
    gap: 10px;
}

.custom-file input[type="file"] {
   
    left: 0;
    top: 0;
    opacity: 0;
    height: 100%;
    width: 100%;
    cursor: pointer;
}

.upload-label {
    background-color: #d9534f;
    color: #ffffff !important; /* Force white text */
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
    flex-shrink: 0;
}

.file-chosen {
    font-style: italic;
    color: #444;
}


.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: #c4c5c5;
         margin-top: 10px;
    border-radius: 10px;
    padding: 32px;
   
    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;
    box-shadow: 2px 3px 19px 1px #c4c5c5;
    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: #009688; /* 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: #009688;
    color: #ffffff;
    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%;
}
