.c-with-password{
	position: relative;
}

.c-with-password .c-btn-input {
  padding-right: 50px;
}

.c-with-password .c-btn-icon {
  position: absolute;
  right: 0;
  top: 0;
  left: auto;
  padding: 13px;
  line-height: 1;
  width: 50px;
  z-index: 2;
	display: flex;
  align-items: center;
  height: 100%;
	cursor: pointer;
	background: #2D539A;
	border-radius: 0px 4px 4px 0px;
  justify-content: center;
  align-items: center;
}

.c-with-password .c-btn-icon:hover {
  background-color: #3968c1;
}

.c-btn-icon::after {
	content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 22px;            /* slightly smaller = nicer fit */
  height: 2px;
  background: currentColor;
  transform: translate(-50%, -50%) rotate(45deg);
  transform-origin: center;
  border-radius: 2px;
  color: white;
		opacity: 0;
}

/* Toggle state */
.c-with-password[data-status="text"] .c-btn-icon::after {
	opacity: 1;
}

/*
.c-with-password[data-status="password"] .c-btn-icon svg:nth-child(2), 
.c-with-password[data-status="text"] .c-btn-icon svg:nth-child(1) {
  display: none;
}

.c-with-password[data-status="password"] .c-btn-icon svg:nth-child(1), 
.c-with-password[data-status="text"] .c-btn-icon svg:nth-child(2) {
  display: block;
}*/

.c-with-password .form-control{
	border-radius: 4px 0px 0px 4px;
}