@import "reset.css";
@import "font.css";

:root {
    --prm-page: #f3f6fb;
    --prm-ink: #0b1f3a;
    --prm-text: #263241;
    --prm-muted: #6b7788;
    --prm-line: #dde5ef;
    --prm-panel: #ffffff;
    --prm-accent: #2f6fae;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    background: var(--prm-page);
    color: var(--prm-text);
    font-family: Estedad, Tahoma, Arial, sans-serif;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
}

.prm-public-entry {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 24px;
    background:
        linear-gradient(180deg, rgba(255,255,255,.74), rgba(255,255,255,0) 260px),
        var(--prm-page);
}

.prm-entry-panel {
    width: min(460px, 100%);
    padding: 36px;
    border: 1px solid var(--prm-line);
    border-radius: 10px;
    background: var(--prm-panel);
    box-shadow: 0 24px 70px rgba(15, 31, 58, .12);
    text-align: center;
}

.prm-entry-mark {
    width: 66px;
    height: 66px;
    margin: 0 auto 18px;
    display: grid;
    place-items: center;
    border-radius: 10px;
    background: linear-gradient(180deg, #102b4d, #0b1f3a);
    color: #fff;
    font-size: 20px;
    font-weight: 950;
    box-shadow: 0 14px 34px rgba(15, 31, 58, .20);
}

.prm-entry-panel h1 {
    margin: 0 0 10px;
    color: var(--prm-ink);
    font-size: 29px;
    line-height: 1.35;
    font-weight: 950;
}

.prm-entry-panel p {
    margin: 0 0 24px;
    color: var(--prm-muted);
    font-size: 14px;
    line-height: 1.95;
    font-weight: 650;
}

.prm-entry-button {
    min-height: 46px;
    padding: 0 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: var(--prm-accent);
    color: #fff;
    font-size: 14px;
    font-weight: 850;
    box-shadow: 0 12px 26px rgba(47, 111, 174, .24);
}
