    .custom-form { max-width: 400px; padding: 20px; background: #f7f7f7; border-radius: 8px; }
    .custom-form p { margin-bottom: 15px; }
    .custom-form label { font-weight: bold; display: inline-flex; margin-bottom: 5px; }
    .custom-form label .required{
        color: #FF0000;
    }
    .custom-form input, .custom-form select {
        width: 100%; padding: 10px; border: 1px solid #ccc; border-radius: 4px;
    }
    .custom-form .register{
        cursor: pointer;
    }
    .custom-form .form-error { color: red; font-size: 0.9em; }
    .custom-form .form-success { color: green; font-size: 1em; font-weight: bold; }
    .custom-form .password-input {
    position: relative;
    display: block;
}

.custom-form .password-input input[type="password"],
.custom-form .password-input input[type="text"] {
    width: 100%;
    padding: 10px;
    padding-right: 40px; /* space for the eye button */
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

.custom-form .password-input .show-password-input {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    cursor: pointer;
    font-size: 16px;
    line-height: 1;
}