:root {
  --app-font-family: "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
}

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 {
  font-family: var(--app-font-family);
  margin-bottom: 60px;
}

button,
input,
select,
textarea {
  font-family: inherit;
}

/* Override padding for all containers */
.container, .container-fluid {
    padding-left: 0;
    padding-right: 0;
}

.home-container {
    background-color: var(--home-bg-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 {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.18);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 92px;
    font-weight: 700;
    line-height: 1;
    user-select: none;
}

.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;
    border-radius: 16px;
}

    .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-button.clicked {
        transform: scale(1.03);
    }

    .logo-button.clicked .logo-image {
        filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.6)) drop-shadow(0 0 18px rgba(173, 216, 255, 0.8));
    }


.logo-image {
    max-width: 150px; /* Adjust the size as needed */
    max-height: 150px; /* Adjust the size as needed */
    object-fit: contain; /* Maintain aspect ratio */
    transition: filter 0.18s ease;
}

.hidden-form {
    display: none;
}

.home-container.mobile-layout .top-image-container {
    position: static;
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 16px;
    margin-bottom: 24px;
}

.home-container.mobile-layout .button-container {
    margin-top: 0;
    width: 90%;
    justify-content: center;
}

.home-container.desktop-layout {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    justify-content: center;
    align-items: center;
}

.home-container.desktop-layout .top-image-container {
    position: static;
    width: auto;
    margin-bottom: 24px;
}

.home-container.desktop-layout .button-container {
    margin-top: 0;
    width: min(1100px, 92vw);
    justify-content: center;
    align-items: center;
    gap: 10px;
}