body {
    margin: 0;
    font-family: Inter, sans-serif;
    background:
        radial-gradient(circle at top center, rgba(249, 115, 22, 0.16), transparent 34%),
        #09090b;
    color: #fff;
}

.access-gate {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.access-gate__card {
    width: 100%;
    max-width: 420px;
    padding: 32px;
    border-radius: 28px;
    background: rgba(14, 16, 24, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

.access-gate__brand {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
}

.access-gate__logo {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: #f97316;
    color: #fff;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
}

.access-gate__eyebrow {
    margin: 0 0 4px;
    color: #f97316;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.access-gate__title {
    margin: 0;
    font-size: 32px;
    line-height: 1.05;
}

.access-gate__text {
    margin: 0 0 20px;
    color: #a1a1aa;
    font-size: 15px;
    line-height: 1.7;
}

.access-gate__error {
    margin-bottom: 16px;
    padding: 12px 14px;
    border-radius: 14px;
    background: rgba(239, 68, 68, 0.12);
    border: 1px solid rgba(239, 68, 68, 0.22);
    color: #fca5a5;
    font-size: 14px;
}

.access-gate__form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.access-gate__input {
    height: 52px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.10);
    background: rgba(255, 255, 255, 0.04);
    color: #fff;
    padding: 0 16px;
    font-size: 15px;
    outline: none;
}

.access-gate__input:focus {
    border-color: rgba(249, 115, 22, 0.6);
}

.access-gate__button {
    height: 52px;
    border: 0;
    border-radius: 16px;
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    color: #fff;
    font-size: 15px;
    font-weight: 800;
    cursor: pointer;
}