html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}


h1 {
    font-size: 40pt;
    color: #000;
    margin-bottom: 0.5em;
    font-weight: bold;
}

p {
    color: #000;
    /*max-width: 600px;*/
}

.card {
    border-radius: 16px;
    box-shadow: 0 4px 24px #0002;
    margin-bottom: 2em;
    transition: transform 0.3s, box-shadow 0.3s;
}

/* lektor*/



h1 {
    font-size: 40pt;
    color: #000;
    margin-bottom: 0.5em;
    font-weight: bold;
}

/*.card {
    border-radius: 16px;
    box-shadow: 0 4px 24px #0002;
    margin-bottom: 2em;
    transition: transform 0.3s, box-shadow 0.3s;
}*/

.navbar-brand {
    font-size: 40pt;
    text-transform: uppercase;
}

.lect-grid {
    display: grid;
    grid-template-columns: 172px 1fr;
    gap: 16px;
    align-items: center
}

.avatar {
    inline-size: 172px;
    block-size: 172px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(96,165,250,.12);
    color: #dbeafe;
    border: 1px solid rgba(96,165,250,.35);
    padding: 6px 12px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 14px
}

.title {
    font-size: clamp(26px,4vw,40px);
    line-height: 1.2;
    margin: 12px 0 6px
}

.subtitle {
    color: var(--muted);
    max-width: 60ch;
    margin: 0
}


/* FORM*/



h1 {
    font-size: 40pt;
    color: #000;
    margin-bottom: 0.5em;
    font-weight: bold;
}

/*
.card {
    border-radius: 16px;
    box-shadow: 0 4px 24px #0002;
    margin-bottom: 2em;
    transition: transform 0.3s, box-shadow 0.3s;
}

.navbar-brand {
    font-size: 40pt;
    text-transform: uppercase;
}*/

/*.card {
    grid-column: span 12;
    background: var(--card);
    border: 1px solid #1f2a44;
    border-radius: var(--radius);
    padding: 20px;
    box-shadow: var(--shadow);
}

.card h2 {
    margin: 0 0 10px;
    font-size: 22px
}
*/
.list {
    margin: 0;
    padding: 0 0 0 18px
}

.pill {
    display: inline-block;
    background: #f2f7a6;
    border: 1px solid #1f2a44;
    padding: 6px 10px;
    border-radius: 999px;
    margin: 6px 6px 0 0;
    color: #cbd5e1
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 20px
}

.info {
    background: #f2f7a6;
    border: 1px solid #1f2a44;
    border-radius: 12px;
    padding: 14px
}

    .info strong {
        display: block
    }

form {
    display: grid;
    gap: 16px;
    margin-top: 6px
}

form .row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px
}

label {
    display: block;
    margin: 0 0 6px;
    color: #000;
    font-weight: 600
}

input, select, textarea {
    width: 100%;
    padding: 12px 14px;
    border-radius: 12px;
    border: 1px solid #27406d;
    background: #f2f7a6;
    color: #000;
    outline: none;
    transition: .15s border-color, .15s box-shadow;
}

    input:focus, select:focus, textarea:focus {
        border-color: var(--brand);
        box-shadow: var(--ring)
    }

.help {
    color: var(--muted);
    font-size: 14px;
    margin-top: 4px
}

.required::after {
    content: " *";
    color: var(--warn)
}

.actions {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 18px;
    border-radius: 12px;
    border: 1px solid #1f2a44;
    cursor: pointer;
    font-weight: 700
}

.btn-primary {
    background: linear-gradient(180deg,#1f3f7a,#153264);
    color: white;
    border-color: #355aa0
}

    .btn-primary:hover {
        filter: brightness(1.08)
    }

.note {
    font-size: 14px;
    color: var(--muted)
}

/*footer {
    padding: 24px 0;
    color: #94a3b8;
    text-align: center;
    border-top: 1px solid #1f2a44;
    background: #0a1022
}*/
/* Responsive */
@media (max-width: 900px) {
    .hero {
        grid-template-columns: 1fr
    }

    .info-grid {
        grid-template-columns: 1fr
    }

    .row {
        grid-template-columns: 1fr
    }
}