/**
 * Hello there!
 *
 * hideShowPassword doesn't have any CSS requirements.
 *
 * If you're looking for examples of how you might
 * style the inner toggle, check out...
 *
 * - example.minimal.css
 * - example.wink.css
 *
 * ...in the same directory as this.
 *
 * Thanks for checking out our plugin! :)
 */

/* custom toggle style */

.my-toggle {
  background: transparent;
  border: 0;
  border-radius: 0.25em;
  color: #888;
  cursor: pointer;
  font-size: 0.75em;
  font-weight: bold;
  margin-right: 0.5em;
  padding: 0.5em;
  text-transform: uppercase;
  -moz-appearance: none;
  -webkit-appearance: none;
}

.my-toggle:hover,
.my-toggle:focus {
  background-color: #eee;
  color: #555;
  outline: transparent;
}

/* demo-specific styles */

*, *:before, *:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.login,
.login-field {
    border-radius: 0.25em;
}

.login {
    background-color: #e6e6e6;
}

.login-label,
.login-field {
    display: block;
}

.login-label {
    font-size: 0.875em;
    padding: 0.57142857142857em 0.57142857142857em 0.28571428571429em;
    
}

.login-field {
    background-color: #fff;
    border: 1px solid #ccc;
    margin: 0;
    padding: 0.75em;
    position: relative;
    width: 100%;
    -moz-appearance: none;
    -webkit-appearance: none;
    padding-top: 7px;
}

    .login-field:focus {
        border-color: #0088cc;
        outline: transparent;
        z-index: 2;
    }

.hideShowPassword-toggle,
.my-toggle {
    z-index: 3;
}

::-ms-reveal,
::-ms-clear {
  display: none !important;
}

.hideShowPassword-toggle {
  background-color: transparent;
  

  background-image: url('../../css/CustomCSS/Content/images/eye.svg'), none;
  background-position: 0 center;
  background-repeat: no-repeat;
  border: 2px solid transparent;
  border-radius: 0.25em;
  cursor: pointer;
  font-size: 100%;
  height: 44px;
  margin: 0;
  max-height: 100%;
  padding: 0;
  overflow: 'hidden';
  text-indent: -999em;
  width: 46px;
  -moz-appearance: none;
  -webkit-appearance: none;
}

.hideShowPassword-toggle-hide {
    background-image: url('../../css/CustomCSS/Content/images/eyeClose.svg'), none;
    background-position: 0 center;
    background-repeat: no-repeat;
}

.hideShowPassword-toggle:hover,
.hideShowPassword-toggle:focus {
  border-color: #0088cc;
  outline: transparent;
}