body {
    background:
            radial-gradient(circle at top right, rgba(115, 171, 86, 0.28), transparent 28%),
            linear-gradient(180deg, #0f2a39 0%, #1e4057 45%, #6ca6cd 100%);
    color: #ffffff;
    min-height: 100vh;
    background-color: #6ca6cd; /* Soft medium blue */
}

.member-nav {
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(14px);
    background: rgba(15, 42, 57, 0.82);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.member-nav__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 0;
    flex-wrap: nowrap;
}

.member-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 0.04em;
}

.member-brand .brand-logo {
    width: auto;
    height: 4rem;
    display: block;
}


label, h1 {
    color: white;
}
p {
    color: #250f30;
}
.text-white {
    color: white;
}
a {
    color: white;
    font-weight: bold;
    text-decoration: underline;
}
a:hover {
    color: white; /* Golden yellow on hover */
    text-decoration: none;
}

/* Keep card titles readable on white card backgrounds */
.card .card-title,
.card .card-title a {
    color: #212529;
}


.btn-primary {
    background-color: #1E4057;
    border-color: #152f69;
}
.btn-primary:hover {
    background-color: #2A5A7A; /* Slightly lighter shade for hover effect */
    border-color: #1c3d8c;
}
.error-input {
    border: 2px solid red !important;
}
.error-text {
    color: red; /* Red text for error messages */
    font-size: 0.9rem; /* Optional: Adjust font size */
    margin-top: 0.25rem; /* Optional: Add spacing above the error message */
}
.rounded-border {
    border: 1px solid #f8f9fa; /* Off-white border color */
    border-radius: 10px; /* Rounded corners */
    padding: 4px; /* Optional: Add some padding inside the border */
    margin-bottom: 0.5rem;
}
.reduced-margin-bottom {
    margin-bottom: 0.5rem
}
.info-icon {
    display: inline-block;
    width: 16px;
    height: 16px;
    line-height: 16px;
    text-align: center;
    border: 1px solid #000;
    border-radius: 50%;
    font-size: 12px;
    font-weight: bold;
    color: #000;
    background-color: #f8f9fa;
    cursor: pointer;
    margin-left: 5px;
}

.fab {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.fab .btn {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

@media (max-width: 991.98px) {
    .member-nav__inner {
        align-items: stretch;
    }
}

@media (max-width: 767.98px) {
    .member-brand .brand-logo {
        height: 2rem;
    }
}