/** put the css for your plugin here **/
:root {
    --main-bg-color : #f0f0f0;
    --form-bg-color : #fff;
    --input-bg-color : #eee;
}

*{
	bodx-sizing	 : border-box;

}

body{
	font-family: tahoma;
}

/* hides microsoft edge and internet explorer password eye view facility */
input[type="password"]::-ms-clear { display: none; }
input::-ms-reveal, input::-ms-clear { display: none; }


.input {
    background: var(--input-bg-color);
    border: none;
    padding: 12px 22px;
    margin: 8px;
    width: 100%;
    outline: none;
    border-radius: 20px;
}

.password_toggle,
.confirm_password_toggle
 {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    cursor: pointer;
}
