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;
}

/* Custom styles for the landing page */
.landing-page {
    background-color: rgb(81, 114, 40); /* Optional dark overlay */
}

    .landing-page h1 {
        text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7); /* Text shadow for better readability */
    }

    .landing-page p {
        font-family: 'Georgia', serif;
        font-size: 1.2rem;
        text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
    }

    .landing-page .btn {
        border-radius: 50px; /* Rounded buttons */
        padding: 10px 20px;
        font-size: 1.1rem;
        transition: background-color 0.3s ease, color 0.3s ease;
    }

        .landing-page .btn:hover {
            background-color: #fff;
            color: #000;
        }

/* Custom styles to enhance form appearance */
.form-label {
    font-weight: bold;
    font-size: 1.1rem;
}

input.form-control,
select.form-select {
    font-size: 1rem;
    padding: 0.75rem;
    border-radius: 8px;
}

button.btn {
    padding: 0.75rem 1.5rem;
    font-size: 1.25rem;
}

h2 {
    font-weight: 700;
    font-size: 2rem;
}

.card {
    background-color: #f8f9fa;
}
