.bg-indigo {
    background-color: #052c65;
    color: white;
}

.btn-outline-indigo {
  color: #052c65;
  border-color: #052c65;
  background-color: transparent;
  border-width: 1px;
  border-style: solid;
  border-radius: 0.375rem; /* 6px — стандартное скругление Bootstrap */
  padding: 0.375rem 0.75rem; /* 6px 12px — стандартный отступ Bootstrap */
  font-size: 1rem;
  line-height: 1.5;
  text-decoration: none;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.btn-outline-indigo:hover {
  color: #ffffff;
  background-color: #052c65;
  border-color: #052c65;
}

.btn-outline-indigo:focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(101, 116, 205, 0.25);
}

.btn-outline-indigo:active,
.btn-outline-indigo.active {
  color: #ffffff;
  background-color: #5663c8;
  border-color: #5663c8;
  box-shadow: none;
}

.btn-outline-indigo:disabled,
.btn-outline-indigo.disabled {
  color: #6574cd;
  background-color: transparent;
  border-color: #6574cd;
  opacity: 0.65;
  pointer-events: none;
}

/* Дополнительные состояния для полной совместимости */
.btn-outline-indigo.focus {
  box-shadow: 0 0 0 0.2rem rgba(101, 116, 205, 0.25);
}

.btn-outline-indigo:not(:disabled):not(.disabled):active:focus,
.btn-outline-indigo:not(:disabled):not(.disabled).active:focus {
  box-shadow: 0 0 0 0.2rem rgba(86, 99, 200, 0.5);
}

.btn-indigo {
  display: inline-block;
  font-weight: 400;
  line-height: 1.5;
  color: #fff;
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  border: 1px solid transparent;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  border-radius: 0.375rem;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  background-color: #052c65;
  border-color: #052c65;
}


.btn-indigo:hover {
  background-color:  #6610f2;
  border-color:  #6610f2;
  color: #fff;
}

.btn-indigo:focus {
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(102, 16, 242, 0.5);
}

.btn-indigo:active,
.btn-indigo.active {
  background-color: #3d0a91;
  border-color: #3d0a91;
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
}

.btn-indigo:disabled,
.btn-indigo.disabled {
  opacity: 0.65;
  pointer-events: none;
}

/* Дополнительные состояния */
.btn-indigo.focus {
  box-shadow: 0 0 0 0.25rem rgba(102, 16, 242, 0.5);
}

.btn-indigo:not(:disabled):not(.disabled):active:focus,
.btn-indigo:not(:disabled):not(.disabled).active:focus {
  box-shadow: 0 0 0 0.25rem rgba(61, 10, 145, 0.5);
}