body, html {
    width: 100%;
    min-height: 100vh;
    background-color: #000;
    color: #fff;
    font-family: "Courier New", Courier, monospace;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
}

/* Back to the Root button in the top left */
.back-button {
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: grey;
    padding: 10px 20px;
    border-radius: 5px;
    color: white;
    font-size: 1rem;
    font-weight: bold;
    text-decoration: none;
    z-index: 10;
}

/* Wrapper to control vertical centering */
.wrapper {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
    margin-top: 50px; /* Move content down by adding a top margin */
}

.content {
    max-width: 600px;
    width: 100%;
    text-align: center;
    padding: 20px;
    box-sizing: border-box;
}

form {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 20px;
}

label {
    margin-bottom: 5px;
    font-weight: bold;
    text-align: center;
}

input[type="text"], input[type="email"], input[type="tel"] {
    padding: 8px;
    font-size: 1rem;
    width: 100%;
    max-width: 300px;
    margin-bottom: 10px;
}

.small-note {
    font-size: 0.8rem;
    color: #bbb;
    margin-bottom: 15px;
}

.button {
    background-color: grey;
    border: none;
    color: white;
    border-radius: 5px;
    cursor: pointer;
    padding: 10px 20px;
    margin-top: 15px;
}

.choice-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 15px;
}

.choice-group div {
    display: inline-flex;
    align-items: center;
    margin-right: 15px;
}

.choice-group label {
    margin-left: 5px;
}

@media (max-width: 600px) {
    .content {
        padding: 20px 10px;
    }

    input[type="text"], input[type="email"], input[type="tel"], button {
        width: 100%;
    }
}
