:root{
  --bulma-box-radius:30px;
}

@font-face {
    font-family: 'Source Code Pro';
    src: url('/static/fonts/SourceCodePro-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Source Code Pro';
    src: url('/static/fonts/SourceCodePro-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

body {
  font-family: "Source Code Pro", monospace;
  font-optical-sizing: auto;
  font-style: normal;
  background: #696A73;
  height: 100vh;
}
    .register {
      margin-top: 1rem;
      background: #696A73;
      
    }

  .box {
    border-radius:6px;
    box-shadow: none;
}

a.button-link {
    color: #ffffff;
    text-decoration: none;
    position: relative;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.6);
    transition: color 0.25s ease, border-color 0.25s ease;
}

/* плавное усиление при наведении */
a.button-link:hover {
    color: #e5e7eb;
    border-bottom-color: rgba(255, 255, 255, 1);
}

/* лёгкая анимация "скольжения" линии */
a.button-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 0%;
    height: 1px;
    background: #ffffff;
    transition: width 0.3s ease;
}

a.button-link:hover::after {
    width: 100%;
}

/* активное состояние */
a.button-link:active {
    color: #d1d5db;
}

/* доступность */
a.button-link:focus-visible {
    outline: 2px dashed rgba(255,255,255,0.6);
    outline-offset: 3px;
}

/* скрытая форма */
.hidden-form {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.4s ease;
}

/* показанная форма */
.hidden-form.active {
    max-height: 500px; /* запас */
    opacity: 1;
    margin-top: 15px;
}


a.button-link {
    color: #ffffff;
    text-decoration: none;
    position: relative;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.6);
    transition: color 0.25s ease, border-color 0.25s ease;
}

/* плавное усиление при наведении */
a.button-link:hover {
    color: #e5e7eb;
    border-bottom-color: rgba(255, 255, 255, 1);
}

/* лёгкая анимация "скольжения" линии */
a.button-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 0%;
    height: 1px;
    background: #ffffff;
    transition: width 0.3s ease;
}

a.button-link:hover::after {
    width: 100%;
}

/* активное состояние */
a.button-link:active {
    color: #d1d5db;
}

/* доступность */
a.button-link:focus-visible {
    outline: 2px dashed rgba(255,255,255,0.6);
    outline-offset: 3px;
}

/* скрытая форма */
.hidden-form {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.4s ease;
}

/* показанная форма */
.hidden-form.active {
    max-height: 500px; /* запас */
    opacity: 1;
    margin-top: 15px;
}
.domain-clean {
    padding: 8px 14px;

    color: #ffffff;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 6px;

    font-family: monospace;
    font-size: 16px;
    letter-spacing: 0.4px;

    transition: all 0.2s ease;
}

/* hover — чуть “поднимаем” контраст */
.domain-clean:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.45);
}
