#signup-form  {
    display: flex;
    flex-direction: column;
    padding: 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

.fields {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.field {
    padding: 1rem;
    display: flex;
    flex-direction: column;
}

select, input {
    padding: 0.8rem;
    border-radius: 6px;
    border: 1px solid #ccc;
    margin-top: 0.5rem;
}

.submit {
    padding: 0.5rem 1rem;
    background-color: #d32f2f;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
    margin-top: 0.5rem;
}

.error {
    color: #d32f2f;
}