:root {
    --ue30-green: #0b8f36;
    --ue30-green-dark: #056126;
    --ue30-blue: #0878c9;
    --ue30-yellow: #ffe600;
    --ue30-red: #e51f32;
    --ue30-ink: #102130;
    --ue30-paper: #ffffff;
}

body {
    background:
        radial-gradient(circle at 85% 12%, rgba(255, 230, 0, 0.24), transparent 24rem),
        linear-gradient(145deg, #0878c9 0%, #39aee8 38%, #0b8f36 100%);
    color: var(--ue30-ink);
    min-height: 100vh;
}

body::before {
    content: "";
    display: block;
    height: 10px;
    background: linear-gradient(90deg,
        var(--ue30-green) 0 32%,
        var(--ue30-yellow) 32% 66%,
        var(--ue30-red) 66% 100%);
}

.ue30-brand {
    color: #fff;
    margin: 2rem auto 1rem;
    max-width: 760px;
    padding: 0 1rem;
    text-align: center;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
}

.ue30-brand__logo {
    display: block;
    height: auto;
    margin: 0 auto;
    max-width: 560px;
    width: min(90%, 560px);
}

.ue30-brand__claim {
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    margin: 0.75rem 0 0;
    text-transform: uppercase;
}

main,
.container,
.content,
form {
    border-radius: 18px;
}

main,
.container > .content,
.content.box,
form {
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 18px 55px rgba(1, 42, 73, 0.24);
}

h1,
h2,
h3 {
    color: var(--ue30-green-dark);
    font-weight: 900;
}

a {
    color: var(--ue30-blue);
}

button,
.button,
input[type="submit"] {
    background: linear-gradient(180deg, #17ae4e, var(--ue30-green-dark)) !important;
    border: 0 !important;
    border-radius: 999px !important;
    box-shadow: 0 6px 0 #03471b, 0 10px 22px rgba(5, 97, 38, 0.25);
    color: #fff !important;
    font-weight: 800 !important;
    letter-spacing: 0.03em;
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
}

button:hover,
.button:hover,
input[type="submit"]:hover {
    filter: brightness(1.08);
    transform: translateY(-1px);
}

input,
select,
textarea {
    border: 2px solid #cbd9e3 !important;
    border-radius: 10px !important;
}

input:focus,
select:focus,
textarea:focus {
    border-color: var(--ue30-blue) !important;
    box-shadow: 0 0 0 3px rgba(8, 120, 201, 0.16) !important;
}

@media (max-width: 640px) {
    .ue30-brand {
        margin-top: 1.25rem;
    }

    main,
    .container {
        margin-left: 0.75rem !important;
        margin-right: 0.75rem !important;
    }
}
