html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
    position: relative;
    min-height: 100%;
    /*background-image: url("../images/bg.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;*/
}

body {
    margin-bottom: 60px;
    background-image: url("../images/bg.jpg")
}

.hdr-container, .container {
    padding: 0% 10%;
}

.title {
    color: #7f5c4a;
    font-size: 26px;
    font-weight: bold;
    margin-bottom: 20px;
}

.description {
    font-size: 14px;
    color: #555;
    max-width: 800px;
    margin-bottom: 40px;
}

.cards {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.card {
    background: white;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    padding: 20px;
    width: 220px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card-header {
    background-color: #ddd;
    color: white;
    padding: 8px;
    font-weight: bold;
    text-align: center;
    border-radius: 6px 6px 0 0;
    margin-bottom: 15px;
}

.green {
    background-color: #7ac142;
}

.yellow {
    background-color: #c6b552;
}

.orange {
    background-color: #f7953c;
}

.purple {
    background-color: #b84c7a;
}

.card-content {
    flex-grow: 1;
    font-size: 14px;
    color: #333;
    margin-bottom: 20px;
}

    .card-content ul {
        padding-left: 20px;
    }

    .card-content li {
        margin-bottom: 8px;
    }

.card-button {
    background-color: #7ac142;
    color: white;
    border: none;
    padding: 10px;
    border-radius: 5px;
    cursor: pointer;
    text-align: center;
    font-size: 14px;
    margin-top: auto;
}

.yellow-btn {
    background-color: #c6b552;
}

.orange-btn {
    background-color: #f7953c;
}

.purple-btn {
    background-color: #b84c7a;
}

.row {
    padding: 8px 0px;
}

.main-body {
}

div.separator{
    height: 15px;
    width: 100%;
}

.frm-cntnr {
    background-color: white;
    padding: 20px;
    border-radius: 12px;
}

.frm-sbmt-cntnr {
    text-align: center;
    padding: 10px;
}

.footer {
    background-color: white;
}

.apprvl-rqrmnt {
    padding: 20px;
    text-align: center;
    font-weight: bold;
}

.form-title {
    padding: 15px;
    text-align: center;
}

div.atchmnt-cntnr{
    text-align: right;
}

a.navbar-brand-title {
    text-decoration: none;
}

div.chk-box-lst {
    border: 2px solid white;
    padding: 5px;
}

.pad-5{
    padding: 5px;
}

.pad-12{
    padding: 12px;
}

.pad-top-5{
    padding-top: 5px;
}

@keyframes fadeBorder {
    0% {
        border-color: red;
    }

    100% {
        border-color: transparent;
    }
}

.highlight-error {
    position: relative;
    border: 2px solid red;
    border-radius: 3px;
    padding: 5px;
    animation: fadeBorder 3s forwards;
}

    .highlight-error::before {
        content: attr(data-error-msg); /* read per-div message */
        position: absolute;
        top: 50%;
        left: 50%;
        padding: 30px;
        transform: translate(-50%, -50%);
        font-size: 16px;
        color: red;
        opacity: 1;
        transition: opacity 3s ease;
        pointer-events: none;
        /*white-space: nowrap;*/ /* keep message inline */
    }

    .highlight-error.fadeout::before {
        opacity: 0;
    }
