body {
    font-family: Arial, sans-serif;
    background: linear-gradient(to right, #6272a4, #bd93f9); /* Soft, pastel gradient background */
    color: #fff;
}

.container {
    width: 90%;
    max-width: 600px;
    margin: 20px auto;
    padding: 20px;
    background: rgba(0, 0, 0, 0.8);
    border-radius: 10px;
    box-sizing: border-box; /* Ensures padding doesn't affect the overall width */
    gap: 20px;
}

.requiredFields, #optionalFields, #liquidityFields {
    margin-bottom: 20px;
}

#optionalFields div {
    margin-top: 10px;
}

#optionalFields label {
    margin-bottom: 5px;
}


.required {
    color: red;
}

input[type=text], input[type=number], input[type=url], textarea {
    width: calc(100% - 16px); /* Adjust width to account for padding */
    padding: 8px; /* Adjusted padding */
    margin-top: 5px;
    margin-bottom: 20px;
    border: none;
    border-radius: 4px;
    background-color: #fff;
    color: #333;
}

textarea {
    height: calc(1em * 6);
    resize: none;
}

input[type=checkbox] {
    margin-right: 10px;
}

button {
    padding: 10px 20px;
    background-color: #6272a4;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

button:hover {
    background-color: #bd93f9;
}

.eth {
    margin-left: 4px;
    color: #ccc;
}

/* Adding gaps between divs */
form > div {
    margin-bottom: 20px; /* Creates space between each div within the form */
}

a {
    color: #e6e6fa; /* Lavender, a light pastel color */
    text-decoration: none; /* Removes underline */
}

a:hover, a:focus {
    color: #dcd0ff; /* Slightly darker lavender on hover/focus for accessibility */
    text-decoration: underline; /* Adds underline on hover/focus for better UX */
}

.summary-box {
    margin-top: 20px;
    padding: 15px;
    background-color: #f0f0f0; /* Light grey background */
    color: #333; /* Dark text for readability */
    border-radius: 8px;
    box-shadow: inset 0 4px 6px rgba(0,0,0,0.1), 0 1px 3px rgba(0,0,0,0.2); /* Embossed effect */
    text-align: right;
}

.summary-box p {
    margin: 5px 0; /* Reduced spacing to keep the summary compact */
    font-size: 1em; /* Standard font size for clarity */
}

.field-note {
    font-size: small;
}

