.form-container {
    display: flex;
    justify-content: center;
    align-items: center; /* Ensure container takes full viewport height */
}

    .form-container label,
    .form-container input,
    .form-container button {
        margin: 0 10px; /* Adjust spacing between elements as needed */
    }
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;
    background-color: cornflowerblue;
    background-image: url("../img/Bluesky3.jpg");
    background-size: cover;
    background-position: top;
    background-size: 100%;
    background-attachment: fixed;
}
