html {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}
/* Google Fonts - Orbitron */
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700&display=swap');
/* Orbitron Typeface Class */
.orbitron {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    font-size: 24px;
}

/* Tighten navbar spacing */
.navbar {
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
}

    .navbar .nav-link {
        padding-top: 0.25rem;
        padding-bottom: 0.25rem;
    }

    .navbar .btn {
        padding: 0.2rem 0.5rem;
    }

.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;
}
/* Styles for the registration section */
.registration-container {
    max-width: 800px; /* Limits the width of the container */
    margin: 0 auto; /* Centers the container on the page */
    padding: 20px; /* Adds spacing inside the container */
    background-color: #f9f9f9; /* Light background for contrast */
    border: 1px solid #ddd; /* Light border for structure */
    border-radius: 8px; /* Rounded corners */
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow */
}
    /* Fixed width for inputs and labels */
    .registration-container .registration-form-group {
        display: flex;
        flex-wrap: wrap;
        gap: 15px; /* Space between fields */
    }

        .registration-container .registration-form-group label {
            flex-basis: 30%; /* Labels take 30% of the width */
            text-align: right;
            padding-right: 10px; /* Adds spacing between label and input */
        }

        .registration-container .registration-form-group input {
            flex-basis: 60%; /* Inputs take 60% of the width */
            padding: 5px; /* Reduces padding for smaller size */
            border: 1px solid #ccc; /* Light border for inputs */
            border-radius: 4px; /* Rounded input corners */
            box-sizing: border-box;
        }
    /* Checkbox spans full width */
    .registration-container .registration-form-check {
        flex-basis: 100%; /* Checkbox takes full width */
        display: flex;
        align-items: center;
        margin-top: 10px;
    }

        .registration-container .registration-form-check input[type="checkbox"] {
            margin-right: 10px; /* Spacing between checkbox and label */
        }
    /* Buttons */
    .registration-container .registration-button {
        display: block;
        width: auto;
        margin: 10px auto;
        padding: 10px 20px;
        background-color: #007BFF;
        color: white;
        border: none;
        border-radius: 4px;
        cursor: pointer;
    }

        .registration-container .registration-button:hover {
            background-color: #0056b3;
        }

.footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    white-space: nowrap;
    line-height: 60px;
}
