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;
}

.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
  color: var(--bs-secondary-color);
  text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
  text-align: start;
}


#slugMessage {
    color: red;
    font-size: 12px;
}

.logo-container {
    display: flex;
    justify-content: center; /* Horizontal centering */
    align-items: center; /* Vertical centering */
    padding: 20px;
    margin: 20px auto; /* Add vertical spacing */
}

.logo-image {
    border-radius: 20px;
    max-width: 500px; /* Control logo size */
    height: auto; /* Maintain aspect ratio */
    filter: drop-shadow(0 0 10px rgba(0,0,0,0.1)); /* Subtle shadow */
    transition: transform 0.3s ease; /* Smooth hover effect */
}

    /* Optional hover animation */
    .logo-image:hover {
        transform: scale(1.05); /* Slight zoom on hover */
        cursor: pointer;
    }

/* Gradient background */
.logo-container {
    background: linear-gradient(145deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 15px;
}

/* Glow effect */
.logo-image {
    animation: logo-glow 2s infinite alternate;
}

@keyframes logo-glow {
    from {
        filter: drop-shadow(0 0 5px rgba(0,0,0,0.1));
    }

    to {
        filter: drop-shadow(0 0 15px rgba(0,0,0,0.2));
    }
}

@media (max-width: 768px) {
    .logo-image {
        max-width: 200px;
    }
}


.logo-container {
    display: grid;
    place-items: center;
    min-height: 50vh; /* Viewport height unit */
}