* {
    box-sizing: border-box;
}

html,
body {
    min-height: 100%;
    margin: 0;
}

.pt-access-gate {
    color: #f4eee1;
    background:
        radial-gradient(circle at 50% 100%, rgba(102, 25, 25, 0.26), transparent 34%),
        linear-gradient(180deg, #05070c, #080d16 58%, #05070c);
    font-family: Inter, Arial, sans-serif;
}

.pt-access-gate__screen {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 24px;
}

.pt-access-gate__panel {
    width: min(100%, 520px);
    padding: clamp(28px, 6vw, 54px);
    border: 1px solid rgba(255, 255, 255, 0.10);
    background:
        linear-gradient(90deg, rgba(102, 25, 25, 0.80), transparent 4px),
        rgba(11, 18, 32, 0.72);
    box-shadow: 0 28px 90px rgba(0, 0, 0, 0.42);
}

.pt-access-gate__brand {
    margin: 0 0 28px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.42rem;
    font-weight: 700;
    letter-spacing: 0.03em;
}

.pt-access-gate__kicker {
    margin: 0 0 12px;
    color: rgba(244, 238, 225, 0.64);
    font-size: 0.72rem;
    font-weight: 850;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.pt-access-gate h1 {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.4rem, 8vw, 4.9rem);
    line-height: 0.92;
    letter-spacing: -0.06em;
}

.pt-access-gate__text {
    max-width: 36rem;
    margin: 18px 0 30px;
    color: rgba(244, 238, 225, 0.70);
    font-size: 1rem;
    line-height: 1.65;
}

.pt-access-gate__form {
    display: grid;
    gap: 12px;
}

.pt-access-gate__form label {
    color: rgba(244, 238, 225, 0.64);
    font-size: 0.72rem;
    font-weight: 850;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.pt-access-gate__form input {
    width: 100%;
    min-height: 52px;
    padding: 0 15px;
    color: #f4eee1;
    background: rgba(3, 4, 6, 0.74);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 2px;
    font-size: 1.08rem;
    outline: none;
}

.pt-access-gate__form input:focus {
    border-color: rgba(122, 32, 32, 0.95);
    box-shadow: 0 0 0 3px rgba(122, 32, 32, 0.18);
}

.pt-access-gate__form button {
    min-height: 54px;
    margin-top: 8px;
    color: #fff;
    background: #661919;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 2px;
    cursor: pointer;
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.pt-access-gate__form button:hover {
    background: #7a2020;
}

.pt-access-gate__error {
    margin: 0;
    color: #ffd5d5;
    font-size: 0.92rem;
    line-height: 1.45;
}

@media (max-width: 520px) {
    .pt-access-gate__screen {
        padding: 14px;
    }

    .pt-access-gate__panel {
        padding: 28px 22px;
    }
}
