html {
    font-size: 16px;
    position: relative;
    min-height: 100%;
    overflow-x: hidden;
}

body {
    font-family: Arial, sans-serif;
    background-color: #e0f7fa;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    overflow-x: hidden;
}

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type="number"] {
    -moz-appearance: textfield;
}

@media (max-width: 576px) {
    html {
        font-size: 14px;
    }
}

@media (min-width: 576px) and (max-width: 768px) {
    html {
        font-size: 15px;
    }
}

@media (min-width: 768px) and (max-width: 992px) {
    html {
        font-size: 16px;
    }
}

@media (min-width: 992px) {
    html {
        font-size: 17px;
    }
}

.btn:focus,
.btn:active:focus,
.btn-link.nav-link:focus,
.form-control:focus,
.form-check-input:focus {
    -webkit-box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
    -moz-box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

.navbar {
    background-color: #f8f9fa;
    border-bottom: 1px solid #e7e7e7;
    max-width: 100%;
    width: 100%;
    overflow-x: hidden; 
    display: flex;
    flex-wrap: wrap; 
    align-items: center;
}

.navbar-brand {
    display: flex;
    align-items: center;
    margin-right: auto;
}

    .navbar-brand img {
        max-width: 150px;
        height: auto;
        margin-right: 10px;
    }

.navbar-toggler {
    border: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba%280, 0, 0, 0.5%29' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

.navbar-collapse {
    justify-content: space-between;
    flex-grow: 1;
}

/* Container Fluid */
.container-fluid2 {
    display: flex;
    align-items: center;
    flex-grow: 1;
    justify-content: center; 
    margin-left: 1530px;
    font-size: smaller;
    font: bold;
}

    .container-fluid2 label {
        font-size: 1.25rem;
        font-weight: bold;
        text-align: center;
    }

/* Footer */
.footer {
    background-color: #f8f9fa;
    padding: 1rem 0;
    text-align: center;
    max-width: 100%; 
    width: 100%;
    overflow-x: hidden; 
    margin-top: auto; 
}

    .footer .container {
        display: flex;
        justify-content: center;
        align-items: center;
    }

/* Form Styles */
.form-container {
    max-width: 600px;
    margin: -10px auto 50px;
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

form {
    display: grid;
    gap: 15px;
}

label {
    color: black;
}

.form-group {
    margin-bottom: 15px;
}

.btn-primary {
    background-color: #009688;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    margin-top: -10px;
}