/* Font Awesome */
@font-face {
    font-family: 'Font Awesome 5 Free';
    font-style: normal;
    font-weight: 900;
    src: url('../webfonts/fa-solid-900.woff2') format('woff2'), url('../webfonts/fa-solid-900.woff') format('woff');
}

html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}
.disabled-link {
    pointer-events: none;
    opacity: 0.6; /* Optional: makes it look disabled */
}
html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

/* Add to your site's CSS file or within <style> tags in the head */

.footer[b-um64ak29nm] {
    /* position: absolute; */
    bottom: 0;
    width: 100%;
    white-space: nowrap;
    line-height: 60px;
}

body, html {
    height: 100%;
    margin: 0;
    font-family: Arial, sans-serif;
}
.navbarheader {
    background-color: #2424b2;
    color: white;
}
.navbar-toggler-icon {
    
    background-color:white;
}
.navbar-nav {    
    padding-top:17px
}

.login-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 80vh;
    width: 100%;
    padding: 20px;
}

h2 {
    margin-bottom: 20px;
    text-align: center;
}

.form-group {
    margin-bottom: 15px;
    width: 100%;
    max-width: 550px; /* Increase max-width for larger input fields */
}

    .form-group label {
        display: block;
        font-size: 1rem;
        margin-bottom: 5px;
    }

    .form-group input,
    .form-group button {
        width: 100%; /* Makes inputs and buttons take up the full width of the container */
        padding: 12px; /* Increase padding to make the fields larger */
        font-size: 1.1rem; /* Slightly larger text */
        border: 1px solid #ccc;
        border-radius: 4px;
        box-sizing: border-box; /* Ensures padding is included in the width calculation */
    }

    .form-group button {        
        color: white;
        border: none;
        cursor: pointer;
    }

        .form-group button:hover {
           /* background-color: #0056b3;*/
        }

/* Style for the input field with icons on the right */
.input-icon {
    position: relative;
}

    .input-icon i {
        position: absolute;
        right: 10px; /* Position the icon on the right side */
        top: 50%;
        transform: translateY(-50%);
        color: #888; /* Icon color */
    }

    .input-icon input {
        padding-right: 30px; /* Add padding on the right side for space for the icon */
    }

.alert {
    margin-top: 20px;
    width: 100%;
    max-width: 500px;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .form-group input, .form-group button {
        font-size: 1rem; /* Keep the font size readable on mobile */
        padding: 10px; /* Adjust padding for mobile screens */
    }

    .login-container {
        padding: 15px;
    }

    .form-group {
        max-width: 90%; /* Allow form to take up more space on smaller screens */
    }
}


.login-box-container {
    display: flex;
    height: 100vh;
    /* Ensure the container doesn't exceed the viewport height */
    flex-wrap: wrap; /* Allows content to wrap into a new line if needed */
}

.left-column {
    width: 70%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.right-column {
    width: 30%;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.center-column {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 60vh;
    width: 100%;
}

/* Logo styles */
.logo {
    width: 80%;
    height: auto;
    margin-bottom: 20px;
}

.logologin {
    width: 80%;
    height: auto;
    margin-bottom: 20px;
}

.logosLeft {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    .logosLeft img {
        margin-top:05%;
        width: 90%;
        height: 80vh;
    }


.logosLogin {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logosLogin img {
    width: 90%;
    height: auto;
}

.Headerlogo {
    width: 300px;
    height: auto;
    margin-bottom: 0px;
}

.HeaderRightlogo {
    width: 118px;
    height: auto;
    margin-bottom: 0px;
    margin-top: -17px;
}
/* Welcome text at the bottom of left column */
.welcome-text {
    margin-top: auto;
    text-align: center;
    font-size: 18px;
    color: #555;
}

/* Login form styles */
.login-image {
    margin-bottom: 20px;
    max-width: 100%;
    height: 90vh;
}

.logout-form button {
    font-size: 18px;
    color: #000; /* Change color to black */
    border: none;
    background-color: transparent;
    cursor: pointer;
}

    .logout-form button:hover {
        color: red; /* Change color on hover */
    }


/* Media Query for screens smaller than 768px (mobile devices) */
@media (max-width: 768px) {
    .login-box-container {
        flex-direction: column; /* Stack columns vertically */
        height: auto; /* Remove fixed height for mobile */
    }

    .left-column, .right-column {
        width: 100%; /* Make both columns take full width */
        margin-bottom: 20px; /* Add some space between the stacked columns */
    }

    .logo {
        width: 100%; /* Make logo take full width on mobile */
    }

    .welcome-text {
        font-size: 16px; /* Adjust font size for smaller screens */
    }

    .logosLeft {
        width: 100%;
        height: 200px;
    }

        .logosLeft img {
            width: 100%;
            height:30vh;
        }
}
.nav-item:hover .dropdown-menu {
    display: block;
    background-color: #2424b2;
}

/* Optional: Hide the dropdown by default */
.dropdown-menu {
    display: none;
    position: absolute;
    z-index: 1000;
    background-color: #2424b2;
    
}
.dropdown-item:hover {
    color: black !important;
}