:root {
    --gp-color-primary: #c29a44;
    --gp-color-primary-light: #9b7b36;
    --gp-color-primary-dark: #ceae69;

    --gp-color-secondary: #52F123;
    --gp-color-secondary-light: #41c01c;
    --gp-color-secondary-dark: #74f34e;

    --black_1: #333;
    --black_2: #666;
    --black_3: #ddd;
    --black_4: #f8f9fa;
    --white: #fff;
}

body {
   background-color: #03102f;
    /* The Gradient: A slight angle from dark blue to dark teal */
    background-image: linear-gradient(to bottom, #03102f, #0b214a);
    background-repeat: no-repeat;
    background-attachment: fixed; /* Ensures the gradient doesn't scroll with the content */
    padding: 75px 2em 2em;
    text-align: left;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-size: 1rem;
    line-height: 1.5;
    color: var(--white);
}

a {
    color: var(--gp-color-primary-dark);
    text-decoration: none;
}

a:hover {
    color: var(--gp-color-primary);
}

.custom-bg {
    background-color: var(--gp-color-primary);
    border-color: var(--gp-color-primary-dark);
    color: var(--white);
}

.custom-bg:hover {
    background-color: var(--gp-color-primary-dark);
    border-color: var(--gp-color-primary);
    color: var(--white);
}

.custom-color {
    color: var(--black_1);
}

.form-element {
    margin-top: .5rem;
    margin-bottom: .5rem;
}

#form {
    text-align: left;
}

.vcard {
    padding: 0 1rem 1rem;
}

.card {
    background-color: #03102f;
}

#main-content {
    max-width: 480px;
    margin: auto;
}

h1{
    font-size: 1.5rem;
    font-weight: bold;
    margin: 1em 0;
    color: #fff;
}

h2, h3 {
    font-size: 1.2rem;
    font-weight: normal;
    color: #fff;
    margin: 1em 0;
}

p {
        color: #fff;
}

h1 + h2 {
    margin-top: -.5rem;
}

.logo {
    margin-top: -115px;
    text-align: center;
}

.logo img {
    margin-bottom: .5rem;
}

#buttons {
    padding-top: 1rem;
    text-align: center;
}

#buttons .btn {
    position: relative;
    padding: 1rem 1.5rem;
    font-size: 1.1rem;
    line-height: 1.5;
    border: none;
    border-radius: 0.375rem;
    cursor: pointer;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

#buttons .btn i {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 8px;
    font-size: 24px;
}

:focus {
    outline: 3px solid #005fcc;
    outline-offset: 2px;
}

/* Optional: Visually hidden text utility for screen readers */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}


footer {
    font-size: 0.875rem;
    color: var(--black_2);
}

footer a {
    color: var(--gp-color-primary-dark);
    text-decoration: none;
    margin: 0 0.5rem;
}

footer a:hover {
    text-decoration: underline;
}
