:root {
    /* reddish brown */
    --rb: 205, 91, 43;
}


.red-border {
    border-style: solid;
    border-color: red;
}

.green-border {
    border-style: solid;
    border-color: green;
}

.blue-border {
    border-style: solid;
    border-color: blue;
}

.ahx-heading {
    color: #7c795d;
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 28px;
    font-weight: 400;
    line-height: 32px;
    margin-bottom: 24px;
}

.page-title {
    color: #7c795d;
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 28px;
    font-weight: 400;
    line-height: 32px;
    margin: 0 0 24px;
}

.page-title-mobile {
    color: #7c795d;
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 28px;
    font-weight: 400;
    line-height: 32px;
    margin: 0 0 24px;
}

/* flask flashed msgs */
.message {
    color: green;
}

.error {
    color: red;
}

.linkbtn {
    background-color: transparent;
    text-decoration: underline;
    border: 0;
    color: #293b81;
    margin: auto;
}

.linkbtn:hover {
    color: #3280ec;
}

a:link {
    color: #293b81;
}

a:visited {
    color: #293b81;
}

a:hover {
    color: #3280ec;
}

a:active {
    color: #3280ec;
}

.center {
    margin-left: auto;
    margin-right: auto;
}

.ahx-overlay {
    position: fixed;
    user-select: auto;
    left: 0;
    top: 20vh;
    z-index: 20;
    width: 100%;
    padding-left: 10px;
    padding-right: 10px;
}


body {
    font-family: "Segoe UI", Arial, sans-serif;
    color: #2c2c2c;
    background: #f5f5f5;
}

.ahx-form-card {
    background: rgba(var(--rb), 0.9);
    border: 1px solid rgba(var(--rb), 1.0);
    border-radius: 12px;
    padding: 24px 28px;
    max-width: 420px;
    margin: 2rem auto;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.ahx-form-card label {
    display: block;
    font-weight: 600;
    /* margin-bottom: 6px; */
}

.ahx-form-card input {
    /* width: 100%; */
    /* padding: 10px 12px;
    margin-bottom: 16px; */
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 14px;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.ahx-form-card input:focus {
    border-color: rgba(var(--rb), 0.6);
    box-shadow: 0 0 4px rgba(var(--rb), 0.4);
    outline: none;
}

.ahx-form-card button {
    background: #505050;
    /* teal */
    color: #fff;
    font-size: 15px;
    /* font-weight: 600; */
    border: none;
    border-radius: 8px;
    padding: 5px 10px; 
    margin-top: 20px;
    cursor: pointer;
    transition: background 0.25s;
}

.ahx-form-card button:hover {
    background: #101010;
    /* darker teal on hover */
}

