.content {
    display: flex;
    justify-content: center;
    align-items: start;
    gap: 30px;
}

input[required] {
    background-color: rgb(142, 203, 197);
    color: teal;
}

input[type=submit]:hover {
    background-color: turquoise;
    color: teal;
    cursor: pointer;
}

fieldset {
    border-radius: 20px;
    background-color: rgb(0, 0, 0);
    border: 3px solid turquoise;
}

label, input {
    margin-top: 10px;
    margin-bottom: 10px;
    color: teal;
    font-family: "Jura", sans-serif;
    font-style: normal;
}

input {
    padding: 5px;
    border-radius: 5px;
    background-color: rgb(25, 25, 25);
}

label {
    color: teal;
}

legend {
    color: turquoise;
    padding-left: 30px;
    padding-right: 30px;
    font-family: "Jura", sans-serif;
    font-style: normal;
}

p {
    color: teal;
    padding-left: 10px;
    font-family: "Jura", sans-serif;
    font-style: normal;
}


.column2 {
    display: flex;
    flex-direction: column;
    gap: 10px; /* small vertical space between boxes */
}

/* moves left column inward */
.column2:first-child {
    align-items: flex-start;
    margin-left: -200px; /* pushes it away from left edge */
}

/* moves right column inward */
.column2:last-child {
    align-items: flex-end;
    margin-right: 500px; /* pushes it away from right edge */
}

