.gradientOff {
  background-image: linear-gradient( to bottom right, #F65A1D, #F68E0E );
  color: white !important;
  box-shadow: inset -1px 1px 3px rgba(0,0,0,0.1);
}

.gradientOn {
  background-image: linear-gradient( to bottom right, #8a3ab9, #bc2a8d);
  color: white !important;
  box-shadow: inset 1px 1px 3px rgba(0,0,0,0.1);
}

.inputToggleContainer {
  padding-top: 9px;
  > button {
    width: 5.3rem;
    height: 3.4rem;
    margin-bottom: 2.8rem;
    padding: 0;
    border: 1px solid #E3E9F3;
    border-radius: 0.25rem;
    color: #CED3DB;
    background-color: white;
    box-shadow: 0px 1px 1px rgba(104, 118, 142, 0.05);
    font-weight: 600;
    font-size: 1.2rem;
    letter-spacing: 0.1rem;
    font-family: Lato;
    line-height: 3.4rem;
    cursor: pointer;
    &:first-of-type {
      border-right: none;
    }
    &:nth-of-type(2) {
      border-left: none;
    }
    &:hover {
      z-index: 0 !important;
    }
    &:focus {
      outline: 0;
      box-shadow: 0 0 0;
    }
    &:disabled {
      cursor: not-allowed;
    }
  }
}

.error {
  > button {
    &:first-child {
      border: 1px solid #ff203c !important;
      border-right: 0 !important;
    }
    &:last-child {
      border: 1px solid #ff203c !important;
      border-left: 0 !important;
    }
  }
}
