﻿* {
    font-size: 100%;
    font-family: 'Roboto', Calibri;
}

.login {
    display: block;
}

.leftybutton {
    text-align: left;
}

.FooterCell {
    font-family: 'Roboto', Calibri;
    font-weight: bold;
    color: White;
    font-size: 15px;
}

.default-green-button {
    width: 120px;
    min-width: 120px;
    height: 26px;
    background-color: teal;
    color: white;
    border-radius: 20px;
    border: 1px solid;
    font-size: 14px;
    font-weight: bold;
    text-align: center;
    padding-top: 2px;
    display: inline-block;
    cursor: pointer;
}

.img-logo {
    display: block;
    width: clamp(380px, 100%, 100%);
    height: auto;
}

.a-links {
    padding-top: 5px;
    padding-bottom: 5px;
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 211px;
    min-width: 211px;
    height: 40px;
    background-color: #fff;
    color: teal;
    border-radius: 20px;
    border: 1px solid rgba(0, 128, 128, 0.2);
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: box-shadow 0.3s ease, transform 0.1s ease;
    box-shadow: inset 0 1px 2px rgba(255,255,255,0.6), /* subtle inner highlight */
    0 2px 6px rgba(0,0,0,0.1); /* deeper default shadow */
}

.a-links span:first-child {
    margin-bottom: -6px;
}

.a-links:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15), 0 2px 4px rgba(0, 0, 0, 0.1);
    transform: translateY(-1px);
    background-color: teal;
    color: white;
    text-decoration: none;
}

.a-button img {
    opacity: 1;
    -webkit-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
}

.a-button img:hover {
    opacity: .5;
    transform: translateY(-1px);
}

/*.navDiv {
    background-image: url('/images/header_bg.png');
}*/
.navDiv {
    background: linear-gradient( to bottom, #006a71 0%, /* full strength teal top */
    #006a71 5%, /* still strong at 5% down */
    rgba(0,143,139,0) 12% /* fully transparent by 12% down */
    ), #fff; /* fallback white underneath */
    box-shadow: 0 4px 5px rgba(0, 0, 0, 0.1);
}

.textDiv {
    margin: 30px auto;
    font-size: 15px;
    color: #656466;
    padding-top: 0px;
}

.image-logo-big {
    border-width: 0px;
    width: 100%;
    height: auto
}

.login-section img {
    height: 24px;
    width: auto;
}

.div-footer {
    max-height: 40px;
}

    .div-footer a {
        text-decoration: none;
        color: white;
    }

.div-footer-main {
    background: url('/images/leaf_footer.png') no-repeat;
    background-position: calc(100% - 150px) calc(100% - 10px);
}



/* stretch the form to fill the viewport and act as the flex container */
html, body {
    height: 100%;
    margin: 0;
}

.page-wrapper { /* wrapper div */
    display: flex;
    flex-direction: column;
    min-height: 100vh; /* full viewport */
}

/* let the real page content grow / shrink */
#mainContent { 
    flex: 1 0 auto;
    padding: 25px 0;
}

/* footer still sits at the end */
footer.footer {
    margin-top: auto; /* pushes it to the bottom when there’s extra space */
    flex-shrink: 0;
}



@media only screen and (min-width: 998px) {
    .navDiv {
        margin-bottom: 30px;
    }

    .neg-border-logo {
        margin-left: -80px;
    }

    /*.container {
                max-width: 1180px;*/ /* your custom value */
    /*}*/
}

@media only screen and (max-width: 997.9px) {
    .navDiv {
        margin-bottom: 5px;
    }

    .div-footer-main {
        background-image: none !important;
    }

    .login-section {
        background: linear-gradient( to bottom, #006a71 0%, /* full strength teal top */
        #006a71 5%, /* still strong at 5% down */
        rgba(0,143,139,0) 30% /* fully transparent by 12% down */
        ), #fff; /* fallback white underneath */
    }
}

@media (min-width: 768px) and (max-width: 991.98px) {
    .two-col-buttons {
        display: grid !important;
        /* two equal columns */
        grid-template-columns: 1fr 1fr !important;
        /* use a variable “--rows” with a default of 3 */
        grid-template-rows: repeat(var(--rows,3), auto) !important;
        /* fill down column 1, then wrap to column 2 */
        grid-auto-flow: column !important;
        /* spacing: .5rem between rows, 1rem between cols */
        gap: 0.5rem 1rem !important;
    }
}
