html {
    font-size: 14px;
    font-family: system-ui;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
        width:100%;
    }
}

.main {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 50px;
}

.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, body {
    width: 100%;
    height: 100%;
    margin: 0px;
    padding: 0px;
    overflow-x: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

html {
    position: relative;
    min-height: 100%;
}

body {
    margin-bottom: 60px;
    background-image: url('img/GlobalTrackersBlankBackground.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center;
}

.logo-image {
    max-width: 75%;
    width: auto;
    height: auto;
    margin-bottom: 10px;
}

.sign-up {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.submit-container {
    margin: 0 28px 10px 28px;
}

.login-credentials, .radio-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 25px;
}

    .login-credentials > div, .radio-buttons > div {
        padding: 5px;
        display: flex;
        flex-direction: column;
    }

input[type="email"], input[type="password"] {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 14px;
}

.radio-buttons input[type="radio"] {
    display: none;
}

.radio-buttons .radio-label {
    display: inline-block;
    padding: 10px 20px;
    margin: 5px;
    border: 2px solid #ccc;
    border-radius: 5px;
    cursor: pointer;
    background-color: #f9f9f9;
}

.radio-buttons input[type="radio"]:checked + .radio-label {
    background-color: #f78e3b;
    border-color: #ef4a36;
}

.submit-button {
    padding: 10px 20px;
    border: none;
    border-radius: 25px;
    background: linear-gradient(0deg, rgb(127, 69, 6) 18%, rgba(255, 138, 13, 0.95) 105%, rgba(255, 138, 13, 0.9) 150%);
    color: white;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s ease;
    width: 100%;
}

    .submit-button:hover {
        background: linear-gradient(0deg, rgb(127, 69, 6) 18%, rgba(255, 138, 13, 1) 105%, rgba(255, 138, 13, 0.95) 150%);
    }

.qr-signup-form {
    max-width: 400px;
    margin: 40px 80px;
    padding: 10px 10px;
    background-color: #fff;
    border-radius: 10px;
    font-family: Arial, sans-serif;
    
}

    .qr-signup-form input[type="text"],
    .qr-signup-form input[type="email"],
    .qr-signup-form input[type="number"] {
        width: 250px;
        padding: 10px 10px;
        margin-bottom: 5px;
        border: 1px solid #ccc;
        border-radius: 4px;
        font-size: 14px;
    }

    .qr-signup-form input:focus {
        outline: none;
        border-color: #66afe9;
    }

    .qr-signup-form .submit-button {
        background-color: #007bff;
        color: white;
        padding: 5px 5px;
        font-size: 16px;
        border: none;
        border-radius: 4px;
        cursor: pointer;
    }

        .qr-signup-form .submit-button:hover {
            background-color: #0056b3;
        }
