body {
    font-family: Arial, sans-serif;
    /* margin: 20px; */
    /* display: flex; */
    /* flex-direction: column; */
    /* align-items: center; */
    text-align: center;
}
#overlay {
    position: fixed;
    top: 50%;
    left: 0;
    width: 100%;
    height: 10%;
    background: rgba(255, 255, 255, 0.8); /* Translucent white background */
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
}
#publicContent,
#exclusiveContent {
    width: 100%;
}
#exclusiveContent {
    display: none;
}
form {
    margin-top: 300px;
}
form {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    max-width: 500px;
    width: 100%;
}

label {
    display: block;
    margin-bottom: 8px;
    color: #333;
}

input, select {
    width: 100%;
    padding: 10px;
    margin-bottom: 16px;
    box-sizing: border-box;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
}

button {
    background-color: #4CAF50;
    color: #fff;
    padding: 10px 15px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
}

button:hover {
    background-color: #45a049;
}

input:last-child,
select,
input[type="submit"] {
    margin-right: 0; /* Remove margin for the last input or button in the row */
}

input[type="submit"] {
    background-color: #4CAF50;
    color: #fff;
    border: none;
    cursor: pointer;
}

input[type="submit"]:hover {
    background-color: #45a049;
}

input, select, input[type="submit"] {
    width: 48%; /* Adjust the width as needed */
    padding: 10px;
    margin-bottom: 16px;
    box-sizing: border-box;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
    display: inline-block;
    margin-right: 2%; /* Adjust the spacing between inputs */
}
