* {
    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;
}

.input-style,
.user-form input,
.user-form select,
.user-form textarea {
    width: 100%;
    padding: 10px;
    margin: 8px 0;
    box-sizing: border-box;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
}

.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;
    font-size: 18px;
}

.input-container input,
.input-container select,
.input-container textarea {
    padding: 12px 10px 12px 35px; /* space for icon */
    font-size: 16px;
    width: 100%;
    border: none;
    border-radius: 5px;
    box-shadow: 2px 3px 19px 1px #d7d7d7;
    font-family: system-ui;
    font-weight: 600;
    box-sizing: border-box;
    background-color: white;
    resize: none;
}

.user-form textarea {
    height: 120px;
    resize: vertical;
}

.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: #333;
    color: white;
    text-align: center;
    width: 100%;
    padding: 10px 0;
}

/* 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,
    .input-container textarea {
        font-size: 15px;
    }

    .text {
        font-size: 18px;
    }

    .column {
        flex-direction: column;
        gap: 10px;
    }
}
