﻿@font-face {
    font-family: Lato;
    src: url('Lato/Lato-Black.ttf') format("truetype");
    font-weight: normal;
    font-style: normal;
}

input[type=text], input[type=password], input[type=email] {
    border-top-style: hidden;
    border-right-style: hidden;
    border-left-style: hidden;
    border-bottom-style: groove;
    border-color: #12b059;
    border-bottom-width: 3px;
    border-radius: 0px;
    font-size: 1.1rem;
}

/* Reusable flat input class used by pages that want a subtle 1px bottom border */
.input-flat {
    border-top-style: hidden;
    border-right-style: hidden;
    border-left-style: hidden;
    border-bottom-style: groove;
    border-color: #00715D;
    border-bottom-width: 1px;
    border-radius: 0px;
    font-size: 1.1rem;
    background: transparent;
}

/* Generic error/highlight for text boxes */
.textBoxBorder{
    border-bottom-style: groove !important;
    border-color: red !important;
    border-bottom-width: 1px !important;
}

.invoicePDFFont {
    font-family: Lato,'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif !important;
}

.logo-ml {
    margin-left: -1.3em !important;
    height: 25vh;
}

.container-ml {
    margin-left: 4rem;
}

.reg-sub-header1 {
    font-size: 1.7rem;
    line-height: 2rem;
    margin-top: 1rem;
    margin-left: 25px;
}

.container-mt {
    margin-top: 6rem;
}

.no-outline:focus {
    outline: none;
}

label {
    font-size: 1rem !important;
}

.alternate-text {
    color: #017B41;
    font-weight: bold;
    font-size: 1rem !important;
    letter-spacing: 1px;
}

.reg-opacity {
    opacity: 0.4;
}

.cg-button {
    padding: 0.5rem;
    font-size: 1.3rem;
    font-weight: bold;
    background: linear-gradient( 0deg, #00783F 0%, #038C4B 100%);
    color: #fff;
    height: auto;
}

.dvresponseheader {
    background-color: #028346;
    color: white;
    font-size: 1.3rem;
    font-weight: bold;
}

.box-shadow {
    box-shadow: 0px 3px 3px 1px rgb(0 120 63 / 45%);
    padding: 5px;
}

.container-height {
    height: 35rem;
    border-top: 1px solid #00783F;
}

.new-reg {
    text-align: end;
    font-weight: bold;
    color: #00783F;
    font-size: 21px;
    justify-content: flex-end;
}

.mp-container {
    width: 90%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

.label-1 {
    font-size: 28px;
    line-height: 34px;
    color: #0C0C0C;
}

#overlay {
    /*  display: none;
            position: fixed; */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    z-index: 9999;
}

#mainloader {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

#spinner {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    background-color: #fff;
    padding: 20px;
    z-index: 9999;
}

#spinner1 {
    display: none;
    position: fixed;
    top: 60%;
    left: 50%;
    transform: translate(-50%,-50%);
    background-color: #fff;
    padding: 20px;
    z-index: 9999;
}

#loader {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.popup {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    width: 30%;
    text-align: center;
    transform: translate(-50%,-50%);
    background-color: #fff;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.75);
}

.close {
    position: absolute;
    top: 10px;
    font-size: larger;
    right: 10px;
    cursor: pointer;
}

/* Header and footer base styles (moved from _Layout.cshtml) */
.header {
    justify-content: space-between !important;
    height: 4rem;
    display: flex;
    align-items: center;
    box-shadow: 0 2px 2px 0 rgb(0 0 0 / 11%);
}

.footer-links {
    background-color: #00783F;
    height: 50px;
    display: flex;
    font-size: 17px;
    align-items: center;
    color: #fff;
    justify-content: space-between;
    padding-left: 5rem;
    padding-right: 5rem;
}

/* Ensure footer links remain white unless overridden */
.footer-links span a, .footer-links a {
    color: #fff !important;
}

/* Layout head styles moved from _Layout.cshtml */
.body {
    margin: 0;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    text-align: left;
    background-color: #fff;
}

.pleft-5 {
    padding-left: 5rem;
}

/* Footer responsive tweaks for small screens (moved from layout) */
@media (max-width: 575.98px) {
    .footer-links {
        flex-direction: column !important;
        height: auto !important;
        padding-left: 1rem !important;
        padding-right: 1rem !important;
        gap: 6px !important;
        text-align: center !important;
        padding-top: 0.6rem !important;
        padding-bottom: 0.6rem !important;
    }
    .footer-links span, .footer-links a {
        display: block !important;
        width: 100% !important;
    }
}