#esg-registration-form {
    max-width: 400px;
    margin: 20px 0;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background-color: #f9f9f9;
}

#esg-registration-form p {
    margin-bottom: 15px;
}

#esg-registration-form label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
}

#esg-registration-form input[type="text"],
#esg-registration-form input[type="email"],
#esg-registration-form input[type="password"] {
    width: 100%;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box; /* Ensures padding doesn't break width */
}

#esg-registration-form input[type="submit"] {
    background-color: #0073aa; /* Standard WP Blue - you can change this to ESG colors! */
    color: white;
    padding: 10px 15px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
}

#esg-registration-form input[type="submit"]:hover {
    background-color: #005177;
}
