/* body {font-family: Tahoma, Arial, Helvetica, sans-serif} */

body {
    font-family: Arial, Helvetica, sans-serif;
    margin: 0;
    padding: 30px 0 0 0;
    font-weight: normal;
    background: #66544d url('../images/BGTest2.jpg') no-repeat 50% 0;
    font-size: 12px;
    color: #000000;
}

* {
    box-sizing: border-box;
}

a:link,
a:active,
a:visited {
    color: #FFF;
    font-size: 14px;
    font-weight: normal;
    text-decoration: none;
}

a:hover {
    color: #FFF;
    text-decoration: underline;
    font-size: 14px;
    font-weight: normal;
}

a.link:link,
a.link:active,
a.link:visited {
    color: #AC8E61;
    font-size: 14px;
    font-weight: normal;
    text-decoration: none;
}

a.link:hover {
    color: #AC8E61;
    text-decoration: underline;
}

/* Phone link styling */
a[href^="tel:"] {
    color: inherit;
    text-decoration: none;
}

a[href^="tel:"]:hover {
    text-decoration: underline;
}


td {
    font-family: Tahoma, Arial, Helvetica, sans-serif;
    font-size: 12px;
    color: #000000;
}

.white {
    color: #FFFFFF;
}

.blue {
    color: #0070DF;
}

.red {
    /*color: #CE0101;*/
    color: #770000;
}

.px11 {
    font-size: 11px;
}

.px12 {
    font-size: 12px;
}

.px16 {
    font-size: 16px;
}

.px24 {
    font-size: 24px;
}

.grey {
    color: #5D6068;
    font-weight: normal;
}

.orange,
.error {
    color: #FF5400;
}


/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    border: 1px solid black;
    background-color: white;
}

/* Page Title */
.page-title {
    text-align: center;
    margin: 0 0 30px 0;
}

.page-title h2 {
    font-size: 32px;
    color: #660000;
    margin: 0;
    font-weight: 600;
}

/* Header */
.header {
    background-color: #FAFFCD;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-section img {
    max-width: 140px;
    height: auto;
}

.logo-section h1 {
    margin: 0;
    font-size: 48px;
    font-weight: normal;
}

.contact-info {
    text-align: right;
}

.contact-info strong {
    display: block;
}

/* Navigation */
.navigation {
    background-color: #660000;
    padding: 12px 20px;
    text-align: center;
}

.navigation a {
    font-size: 12px;
    color: #FFF;
    text-decoration: none;
    padding: 0 5px;
}

.navigation a:hover {
    text-decoration: underline;
}

/* Content Wrapper */
.content-wrapper {
    background-color: #FAFFCD;
    padding: 30px;
}

/* Two Column Grid */
.two-column-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

/* Two Column Grid */
.three-column-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

/* Single Column for Login */
.single-column {
    display: block;
    margin-bottom: 30px;
}

/* Login Section */
.login-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border: 1px solid #ddd;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    max-width: 450px;
    margin: 0 auto;
}

.login-section h2 {
    text-align: center;
    margin: 0 0 30px 0;
    font-size: 28px;
    color: #333;
    font-family: Arial, sans-serif;
    font-weight: 600;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 14px;
    font-family: Arial, sans-serif;
    color: #555;
}

.form-group input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-family: Arial, sans-serif;
    font-size: 14px;
    transition: all 0.3s ease;
    background-color: #fff;
}

.form-group input:focus {
    outline: none;
    border-color: #660000;
    box-shadow: 0 0 0 3px rgba(102, 0, 0, 0.1);
}

.button-group {
    text-align: center;
    margin-top: 25px;
    display: flex;
    gap: 12px;
}

.button-group input,
.button-group button {
    flex: 1;
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-family: Arial, sans-serif;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.button-group input[type="button"] {
    background-color: #f0f0f0;
    color: #666;
    border: 1px solid #ddd;
}

.button-group input[type="button"]:hover {
    background-color: #e0e0e0;
}

.button-group input[type="submit"] {
    background-color: #660000;
    color: white;
}

.button-group input[type="submit"]:hover {
    background-color: #880000;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(102, 0, 0, 0.3);
}

.request-access {
    display: block;
    margin: 25px auto 0;
    text-align: center;
    font-family: Arial, sans-serif;
    font-size: 14px;
}

.request-access a {
    color: #660000;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid transparent;
    transition: border-color 0.3s ease;
}

.request-access a:hover {
    border-bottom-color: #660000;
}

/* Benefits Section */
.benefits-section {
    margin-bottom: 30px;
}

.benefits-section h2 {
    text-align: center;
    font-size: 24px;
    margin: 0 0 30px 0;
    color: #000;
}

.benefit-box {
    background-color: #f5f5f5;
    border: 2px solid #705C3D;
    border-radius: 5px;
    padding: 20px;
}

.benefit-box h3 {
    font-size: 16px;
    margin: 0 0 15px 0;
    font-weight: bold;
    color: #000;
}

.benefit-image {
    width: 100%;
    height: 250px;
    background-color: #e0e0e0;
    border: 1px solid #999;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    font-size: 12px;
    color: #666;
}

.benefit-image img {
    max-width: 100%;
    max-height: 250px;
}

/* Content Section */
.content-section {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 40px;
    margin-bottom: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.content-section h2 {
    font-size: 28px;
    margin: 0 0 20px 0;
    color: #660000;
    font-family: Arial, sans-serif;
    font-weight: 600;
}

.content-section h3 {
    font-size: 22px;
    margin: 30px 0 15px 0;
    color: #333;
    font-family: Arial, sans-serif;
    font-weight: 600;
}

.content-section p {
    font-size: 15px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 15px;
    font-family: Arial, sans-serif;
}

.content-section ul {
    margin: 15px 0 15px 20px;
    padding: 0;
}

.content-section li {
    font-size: 15px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 10px;
    font-family: Arial, sans-serif;
    padding-left: 5px;
}

.content-section strong {
    color: #660000;
    font-weight: 600;
}


/* Footer */
.footer {
    background-color: #d4a574;
    padding: 20px;
    text-align: center;
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.footer-logo {
    width: 80px;
    height: 60px;
    background: linear-gradient(135deg, #f4d03f 0%, #d4af37 100%);
    border: 2px solid #333;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 32px;
    flex-shrink: 0;
}

.footer-logo img {
    max-width: 75px;
    height: auto;
}

.footer-text {
    text-align: left;
    font-size: 12px;
}

.footer-text p {
    margin: 3px 0;
}

/* Footer links */
.footer-text a {
    color: inherit;
    text-decoration: none;
}

.footer-text a:hover {
    text-decoration: underline;
}


.tintAmount {
    text-align: right;
}

label.error {
    padding-left: 3px;
}

li {
    padding-bottom: 10px;
}



table.tblFormula {
    border: 1px #d4ba95 solid;
}

table.tblFormula td,
table.tblFormula th,
table.tblFormula caption {
    padding-left: 3px;
    padding-right: 3px;
    border: 1px #d4ba95 solid;
    color: #000000;
    font-size: 18px;
}


table.tblFormula caption {
    border-bottom-width: 0px;
}

td.bgGrey,
th.bgGrey,
table.tblFormula caption {
    background-color: #dfdec9;
    font-size: 18px;
    font-weight: bold;
}

table.tblCustomColor {
    /*border-color:#AC8E61;*/
    border-top: 1px solid #705C3D;
    border-left: 1px solid #705C3D;
}

table.tblCustomColor td {
    /*border-right:1px #AC8E61 solid;
	border-bottom:1px #AC8E61 solid;*/
    border-right: 1px #705C3D solid;
    border-bottom: 1px #705C3D solid;
}


/* Error Styling */
.error-message {
    background-color: #FFFE36;
    border: 1px solid #E1E16D;
    color: #000;
    padding: 10px 15px;
    margin: 10px 0;
    border-radius: 6px;
    font-size: 13px;
    display: none;
}

.error-message.show {
    display: block;
}

.form-row.error select {
    border-color: #ff0000;
}

.invalid {
    border: 1px solid red;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    /* display: none; <- Crashes Chrome on hover */
    -webkit-appearance: none;
    margin: 0;
    /* <-- Apparently some margin are still there even though it's hidden */
}

/* Responsive Design */
@media (max-width: 768px) {
    body {
        padding-top: 10px;
    }

    .header {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .logo-section {
        flex-direction: column;
    }

    .logo-section h1 {
        font-size: 36px;
    }

    .logo-section img {
        max-width: 100px;
    }

    .contact-info {
        text-align: center;
    }

    .navigation {
        padding: 10px;
    }

    .navigation a {
        display: inline-block;
        padding: 5px;
        font-size: 11px;
    }

    .content-wrapper {
        padding: 20px;
    }

    .two-column-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .form-group {
        margin-bottom: 18px;
    }

    .form-group label {
        font-size: 13px;
    }

    .form-group input {
        padding: 10px 12px;
    }

    .footer-content {
        flex-direction: column;
    }

    .footer-text {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .login-section {
        padding: 15px;
    }

    .page-title h2 {
        font-size: 24px;
    }
}

@media print {
    .noprint {
        display: none;
    }
}