.modal-login .form-group {
	margin-bottom: 20px;
}
.modal-login label {
	font-weight: normal;
	font-size: 13px;
}
.modal-login .form-control {
	min-height: 38px;
	padding-left: 5px;
	box-shadow: none !important;
	border-width: 0 0 1px 0;
	border-radius: 0;
}
.modal-login .form-control:focus {
	border-color: #ccc;
}
.modal-login .input-group-addon {
	max-width: 42px;
	text-align: center;
	background: none;
	border-bottom: 1px solid #ced4da;
	padding-right: 5px;
	border-radius: 0;
}
.modal-login a {
	color: #fff;
	text-decoration: underline;
}
.modal-login a:hover {
	text-decoration: none;
}
.modal-login a {
	color: #19aa8d;
	text-decoration: none;
}
.modal-login a:hover {
	text-decoration: underline;
}
.modal-login .fa {
	font-size: 21px;
	position: relative;
	top: 6px;
}
.trigger-btn {
	display: inline-block;
	margin: 100px auto;
}


  /**
   * Switch Styles
   */
  /* Variables */
  /* Switch Container */
  .switch {
    position: relative;
    display: inline-block;
  }
  /* Hide the checkbox input (only needed for `:checked` property) */
  .switch-input {
    display: none;
  }
  /* Switch */
  .switch-label {
    margin-bottom: 0 !important;
    display: block;
    width: 48px;
    height: 24px;
    text-indent: -150%;
    clip: rect(0 0 0 0);
    color: transparent;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
    /* Switch Rail & Knob */
    /* Switch Rail */
    /* Switch Knob */
  }
  .switch-label:before,
  .switch-label:after {
    content: "";
    display: block;
    position: absolute;
    cursor: pointer;
  }
  .switch-label:before {
    width: 100%;
    height: 100%;
    background-color: #dedede;
    border-radius: 9999em;
    -webkit-transition: background-color 0.25s ease;
    transition: background-color 0.25s ease;
  }
  .switch-label:after {
    top: 0;
    left: 0;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: #fff;
    box-shadow: 0 0 2px rgba(0, 0, 0, 0.45);
    -webkit-transition: left 0.25s ease;
    transition: left 0.25s ease;
  }
  /* When input is checked */
  .switch-input:checked + .switch-label {
    /* Switch Rail */
    /* Switch Knob */
  }
  .switch-input:checked + .switch-label:before {
    background-color: #89c12d;
  }
  .switch-input:checked + .switch-label:after {
    left: 24px;
  }


.form-control.is-invalid {
  border-color: #dc3545;
  padding-right: calc(1.5em + 0.75rem);
  background-repeat: no-repeat;
  background-position: right calc(0.375em + 0.1875rem) center;
  background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

#id_login {
  background-image: url("/static/assets/img/mail_icon.png");
  padding-right: calc(1.5em + 0.75rem);
  background-repeat: no-repeat;
  background-position: right calc(0.375em + 0.1875rem) center;
  background-size: calc(1.50em + 0.375rem) calc(0.75em + 0.375rem);
}

#id_password.show-eye {
  background-image: url("/static/assets/img/show_psw_icon.png");
  padding-right: calc(1.5em + 0.75rem);
  background-repeat: no-repeat;
  background-position: right calc(0.375em + 0.1875rem) center;
  background-size: calc(1.50em + 0.375rem) calc(0.75em + 0.375rem);
}

#id_password.hide-eye {
  background-image: url("/static/assets/img/hide_psw_icon.png");
  padding-right: calc(1.5em + 0.75rem);
  background-repeat: no-repeat;
  background-position: right calc(0.375em + 0.1875rem) center;
  background-size: calc(1.50em + 0.375rem) calc(0.75em + 0.375rem);
}