.channel-tabs{
  margin: 20px 0;
  display:flex;
  gap:10px;
  align-items:center;
  flex-wrap:nowrap;
}

.tab{
  --bg: #eef3f7;
  --bd: transparent;
  --fg: #6f7f8f;
  flex: 1;
  justify-content: center;
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:10px 8px;
  border-radius:12px;
  border:1.5px solid var(--bd);
  background:var(--bg);
  color:var(--fg);
  font: 500 12px/1.1 system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  cursor:pointer;
  user-select:none;
  transition: transform .06s ease, background .15s ease, border-color .15s ease, color .15s ease;
}

.tab__icon{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:22px;
  height:22px;
  color: currentColor;
}

.tab:hover{
  transform: translateY(-1px);
}

.tab:active{
  transform: translateY(0);
}
.tab.blocked {
    background-color: #ffaaaa;
}

.tab.is-active{
  --bg: #eafaf2;
  --bd: #22c55e;
  --fg: #16a34a;
}

.tab.is-active svg path{
  fill: #0AB464;
}

.tab:focus-visible{
  outline: 3px solid rgba(34,197,94,.25);
  outline-offset: 2px;
}

@keyframes textPulse {
  0% {
    color: #333;
    text-shadow: none;
  }
  50% {
    color: #ff6b6b;
    text-shadow: 0 0 6px rgba(255, 107, 107, 0.8);
  }
  100% {
    color: #333;
    text-shadow: none;
  }
}

.move-to-register {
    background-color: #fdfdfd;
    text-align: center;
    padding: 20px 0;
    width: 106%;
    border-top: 2px solid #E0EBF4;
    margin-left: -15px;
}

.move-to-register p {
    color: #586A83;
}

.main-block {
    background: #fdfdfd;
    box-shadow: 0px 3px 2px rgba(193, 208, 221, 0.24);
}

.top-title {
    font-weight: 400;
    font-size: 14px;
    line-height: 150%;
    text-align: center;
    color: #586A83;
}

.top-title-wrapper {
    margin-bottom: 20px;
}

.input-block.success input {
    border-color: green;
}

.calling-wrapper {
    margin: 20px 0;
    display: flex;
    flex-wrap: nowrap;
    gap: 5px;
    border: 1px solid #ebebeb;
    padding: 5px;
    font-size: 14px;
    align-items: center;
    justify-content: center;
    color: #22b469;
    background-color: #22b46914;
}

.btn-call, .check-code-wrapper button {
    background-color: #E0EBF4;
    color: #586A83;
}

.check-code-wrapper button.active {
    background-color: #02a056;
    color: white;
}

.code-timer-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
    color: #586A83;
}

.code-timer-item {
    margin: 0 3px;
}

.check-code-wrapper {
    text-align: center;
}

.check-code-wrapper.active button {
    background-color: #0AB464;
    color: #FFFFFF;
}

.code-repeat-wrapper {
    text-align: center;
    margin: 20px 0;
    color: #E0EBF4;
}

.code-repeat-wrapper.active {
    color: #0AB464;
}

.sms-code input.active {
    border-color: green;
}

.sms-code input.error {
    border-color: #FF0004;
}

.code-error-text {
    font-size: 13px;
    color: #FF0004;
}

.pulse-text {
  animation: textPulse 1.2s ease-in-out;
}

.cabinet .container {
    max-width: 545px;
    box-shadow: 0 0 15px 0.5px #E0EBF4;
}

.cabinet .container  {
max-width: 500px;
}

.cabinet {
padding: 56px 0 56px;
}

.cabinet__enter-form {
max-width: 380px;
}

.top-title-wrapper {
margin-right: 25px;
margin-left: 25px;
}

.date-input-container {
display: flex;
gap: 12px;
align-items: flex-end;
width: 100%;
}

.date-field {
position: relative;
display: flex;
flex-direction: column;
flex: 1;
min-width: 0;
}

.date-label {
font-size: 13px;
color: #999;
margin-bottom: 8px;
font-weight: 400;
white-space: nowrap;
}

.select-wrapper {
position: relative;
width: 100%;
}

.date-select {
color: #788089;
background-color: white;
cursor: pointer;
-webkit-appearance: none;
-moz-appearance: none;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23666' d='M1.41 0L6 4.59L10.59 0L12 1.41l-6 6l-6-6z'/%3E%3C/svg%3E");
background-repeat: no-repeat;
background-position: right 12px center;
box-sizing: border-box;
font-family: "FuturaPT", sans-serif;
font-weight: 400;
font-size: 16px;
line-height: 18px;
padding: 9px 15px;
display: block;
border: 1px solid #EAECF0;
border-radius: 5px;
transition: all 0.2s;
outline: none;
}

.date-select:focus {
border-color: #666;
box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1);
}

.date-select option:first-child {
color: #aaa;
}

.day-select,
.month-select,
.year-select {
width: 100%;
}

.date-select::-ms-expand {
display: none;
}

@media (max-width: 768px) {
.date-input-container {
gap: 8px;
}

.date-select {
padding: 10px 35px 10px 12px;
font-size: 14px;
}