* {
    box-sizing: border-box;
}

:root {
    --navy: #07111f;
    --navy-2: #0b1728;
    --navy-light: #10243d;

    --blue: #2f83dd;
    --blue-light: #4e9ceb;

    --orange: #f4a62a;
    --orange-soft: #e9a23b;

    --green: #46e37c;
    --red: #ff6673;

    --text: #ffffff;
    --muted: #9eb1c7;

    --card:
        linear-gradient(
            145deg,
            rgba(18,39,66,0.96),
            rgba(8,22,39,0.96)
        );
}

html,
body {
    margin: 0;
    min-height: 100%;
}

body {
    font-family:
        Arial,
        Helvetica,
        sans-serif;

    background:
        radial-gradient(
            circle at top right,
            rgba(47,131,221,0.20) 0%,
            transparent 35%
        ),
        radial-gradient(
            circle at bottom left,
            rgba(244,166,42,0.07) 0%,
            transparent 30%
        ),
        linear-gradient(
            135deg,
            var(--navy) 0%,
            var(--navy-2) 55%,
            #06101b 100%
        );

    color: var(--text);
    min-height: 100vh;
}

body::before {
    content: "";

    position: fixed;
    inset: 0;

    background-image:
        linear-gradient(
            rgba(255,255,255,0.015) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255,255,255,0.015) 1px,
            transparent 1px
        );

    background-size: 32px 32px;

    pointer-events: none;
}

a {
    color: inherit;
}

.topbar {
    background: rgba(4,13,25,0.94);

    border-bottom:
        1px solid rgba(255,255,255,0.08);

    padding: 18px 24px;

    display: flex;
    justify-content: space-between;
    align-items: center;

    position: relative;
    z-index: 20;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-symbol {
    width: 44px;
    height: 44px;

    border: 2px solid var(--blue);
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #0a1e36;

    font-weight: bold;
    font-size: 17px;

    box-shadow:
        0 0 20px rgba(47,131,221,0.25);

    position: relative;
}

.logo-symbol::after {
    content: "";

    width: 6px;
    height: 6px;

    position: absolute;
    right: 2px;
    top: 2px;

    background: var(--orange);
    border-radius: 50%;

    box-shadow:
        0 0 10px rgba(244,166,42,0.8);
}

.logo-text {
    font-size: 22px;
    font-weight: 800;
    letter-spacing: 1px;
}

.logo-text span {
    color: var(--orange);
}

.container {
    width: min(1100px, 92%);
    margin: 0 auto;
    padding: 50px 0;

    position: relative;
    z-index: 1;
}

.center-page {
    min-height: calc(100vh - 81px);

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 40px 20px;

    position: relative;
    z-index: 1;
}

.eyebrow {
    color: var(--orange);

    font-size: 12px;
    font-weight: bold;

    letter-spacing: 3px;
    text-transform: uppercase;

    margin-bottom: 10px;
}

h1,
h2,
h3 {
    color: var(--text);
}

h1 {
    margin-top: 0;
}

.subtitle {
    color: var(--muted);
    line-height: 1.6;
    margin-bottom: 28px;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;

    color: #d9e4f0;

    font-size: 14px;
    font-weight: bold;

    margin-bottom: 8px;
}

input[type="text"],
input[type="email"],
input[type="password"],
select,
textarea {
    width: 100%;

    background:
        rgba(255,255,255,0.055);

    border:
        1px solid rgba(255,255,255,0.12);

    border-radius: 10px;

    color: white;

    padding: 14px 15px;

    font-size: 16px;

    outline: none;

    transition: 0.2s ease;
}

input:focus,
select:focus,
textarea:focus {
    border-color:
        rgba(244,166,42,0.65);

    box-shadow:
        0 0 0 3px
        rgba(244,166,42,0.08);
}

button,
.button,
.primary-button {
    border: 0;
    cursor: pointer;

    display: inline-block;

    background: var(--blue);
    color: white;

    text-decoration: none;
    font-weight: bold;

    padding: 14px 20px;

    border-radius: 10px;

    transition: 0.2s ease;

    font-size: 15px;
}

button:hover,
.button:hover,
.primary-button:hover {
    transform: translateY(-2px);

    background: var(--orange);
    color: var(--navy);
}

.button-full {
    width: 100%;
}

.message {
    border-radius: 10px;

    padding: 12px 14px;
    margin-bottom: 20px;

    font-size: 14px;
}

.message-error {
    color: #ffd5d9;

    background:
        rgba(255,102,115,0.10);

    border:
        1px solid rgba(255,102,115,0.25);
}

.message-success {
    color: #bff7d1;

    background:
        rgba(70,227,124,0.09);

    border:
        1px solid rgba(70,227,124,0.25);
}

.footer {
    text-align: center;

    color: #52677d;

    padding: 25px;

    font-size: 12px;
    letter-spacing: 1px;

    position: relative;
    z-index: 1;
}

.footer span {
    color: var(--orange);
}

@media (max-width: 600px) {

    .topbar {
        padding: 14px 17px;
    }

    .logo-text {
        font-size: 18px;
    }

    .center-page {
        padding: 25px 15px;
        align-items: flex-start;
    }
}