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;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

/* Override padding for all containers */
.container, .container-fluid {
    padding-left: 0;
    padding-right: 0;
}

.home-container {
    background-color: #3366cc;
    min-height: 100vh;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.top-image-container {
    position: absolute;
    top: 20px;
    width: 100%;
    text-align: center;
}

.top-image {
    max-width: 150px;
    height: auto;
}

.button-container {
    margin-top: 160px; /* Adjust margin to position the buttons properly */
    display: flex;
    justify-content: space-around; /* Evenly spaces buttons horizontally */
    width: 80%; /* Adjust as needed to control button container width */
    flex-wrap: wrap; /* Allows wrapping of buttons on smaller screens */
}
.logo-button {
    background-color: transparent; /* Make button background transparent */
    border: none; /* No border around the button */
    padding: 10px;
    margin: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.1s ease, box-shadow 0.1s ease;
}

    .logo-button:hover {
        /* Add a slight hover effect */
        transform: scale(1.1);
    }

    .logo-button:active {
        /* Make the button look "pressed" when clicked */
        transform: scale(0.9); /* Slightly shrink */
    }


.logo-image {
    max-width: 150px; /* Adjust the size as needed */
    max-height: 150px; /* Adjust the size as needed */
    object-fit: contain; /* Maintain aspect ratio */
}

.hidden-form {
    display: none;
}