﻿
body {
    background: #e9eef2;
}

.login-wrapper {
    min-height:90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 10px;
}

.login-card {
    width: 340px;
    background: #fff;
    padding: 20px 25px;
    border-radius: 6px;
    box-shadow: 0 8px 20px rgba(22, 60, 80, 0.06);
}

.brand-title img {
    max-width: 140px !important;
}



.sub-title {
    margin-bottom: 12px;
}

.input-with-icon {
    position: relative;
    margin-bottom: 32px; /* extra space when error shows */
}


   .input-with-icon input {
    padding-left: 40px;
    padding-right: 40px;
}

    .input-with-icon .fa-solid {
        position: absolute;
        right: 14px;
        top: 50%;
        transform: translateY(-50%);
        color: #7a8b96;
        font-size: 18px;
    }
    .input-with-icon span.text-danger {
        position: absolute;
        bottom: -21px;
        left: 0;
        font-size: 12px !important;
    }
error-message {
    margin-top: 4px; /* place below input naturally */
    min-height: 16px; /* reserve space even when empty */
}

.error-message span.text-danger {
    font-size: 12px !important;
}

.form-control:focus {
    box-shadow: none;
}

.captcha-row img {
    height: 37px;
    border-radius: 4px;
    border: 2px solid #e6f3fa;
    background: linear-gradient(45deg,#e6f3fa,#f6fbff);
}

.forgot-link {
    font-size: 0.9rem;
}

.powered {
    text-align: center;
  /*  margin-top: 18px;*/
    color: #8b9499;
    font-size: 0.88rem;
}

.captcha-row {
    text-align: center;
}

.captcha-box {
    position: relative;
    display: inline-block;
    width: 100%;
    height: 50px;
    border-radius: 6px;
    overflow: hidden;
    border: 2px solid #d1e6f5;
    background-image: url('https://www.transparenttextures.com/patterns/asfalt-dark.png');
    background-size: cover;
    background-color: #f6fbff;
    cursor: pointer;
    user-select: none;
}

.captcha-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-2deg);
    font-size: 22px;
    font-weight: 700;
    font-family: monospace;
    letter-spacing: 3px;
    color: #1a3d6d;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.15);
}


.captcha-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: repeating-linear-gradient( 45deg, rgba(255,255,255,0.1), rgba(255,255,255,0.1) 2px, transparent 2px, transparent 4px );
    pointer-events: none;
}

.mb-3 {
    margin-bottom: 12px !important;
}


select.form-select {
    font-size: 14px !important;
}


    select.form-select option {
        font-size: 14px !important;
    }


input.form-control {
    font-size: 14px !important;
}


::placeholder {
    font-size: 14px !important;
}


input::-webkit-input-placeholder {
    font-size: 14px !important;
}

input::-moz-placeholder {
    font-size: 14px !important;
}

input:-ms-input-placeholder {
    font-size: 14px !important;
}

input:-moz-placeholder {
    font-size: 14px !important;
}

.btn-lg {
    font-size: 14px !important;
    padding: 10px 16px; /* optional – keeps button balanced */
}
/* Button Yellow */
.btn-primary {
    background: #f4c430;
    border-color: #f4c430;
    color: #000;
    font-weight: 600;
    border-radius: 6px;
    padding: 6px 18px;
}

.forgot-link {
    font-size: 14px !important;
}



