

        body { font-family: "Inter"; background-image: url(/assets/images/resources/individual-banking-bg.jpg); background-attachment: scroll; background-color: #1a1c23;background-blend-mode: luminosity; z-index: -1; background-size: cover;  background-position: center; background-repeat: no-repeat; 
        
            -moz-osx-font-smoothing: grayscale;
   -webkit-font-smoothing: antialiased;
   text-rendering: optimizeLegibility; /* Improve readability for large text */
   -webkit-text-size-adjust: 100%; /* Prevent font scaling in landscape mode */
        
        } 
        p { font-size: 11pt; font-weight: normal; text-decoration: none; color: dark; } 
        span { font-family: "Inter"; } 
        .equal-prepend { padding-top: 1rem; padding-bottom: 1rem; } 
        .card-signin .card-body { padding: 2.2rem; } 
        .card-signin { border: 0; border-radius: 1rem; box-shadow: 0 0.5rem 1rem 0 rgba(0, 0, 0, 0.1); } 
        .form-control:focus { border-color: gray; box-shadow: none; -webkit-box-shadow: none; } 
        .has-error .form-control:focus { box-shadow: none; -webkit-box-shadow: none; } input::-webkit-input-placeholder { color: gray !important; } 
        input:-moz-placeholder { /* Firefox 18- */ color: gray !important; } 
        input::-moz-placeholder { /* Firefox 19+ */ color: gray !important; } 
        .form-group { position: relative; margin-bottom: 1rem; } 
        .form-group input { font-size:14pt; height: auto; }


input[type="checkbox"] {
    appearance: none; /* Remove default checkbox styles */
    -webkit-appearance: none; /* Remove default checkbox styles in WebKit browsers */
    -moz-appearance: none; /* Remove default checkbox styles in Mozilla browsers */
    width: 20px; /* Set custom width */
    height: 20px; /* Set custom height */
    background-color: white; /* Background color of the checkbox */
    border: 2px solid #1b1e21; /* Border for the checkbox */
    cursor: pointer; /* Set cursor to pointer */
    border-radius: 4px; /* Add rounded corners */
    display: inline-block; /* Keep it inline */
    top: -0.2em;
}

/* Add checkmark using pseudo-element */
input[type="checkbox"]:checked::after {
    content: ''; /* Create the checkmark */
    position: absolute;
    top: 2px;
    left: 6px;
    width: 5px;
    height: 10px;
    border: solid #241E4E; /* Color of the checkmark */
    border-width: 0 3px 3px 0;
    transform: rotate(45deg); /* Rotate to make the checkmark */
}

        
body:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: rgb(26, 28, 35);
    background: linear-gradient(90deg, rgba(26, 28, 35, 1) 0%, rgba(26, 28, 35, 0) 0%, rgba(26, 28, 35, 0) 40%, rgba(26, 28, 35, 0.3701855742296919) 51%, rgba(26, 28, 35, 0.9472163865546218) 65%, rgba(26, 28, 35, 1) 100%);
}

body:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: #1a1c23;
    opacity: 0.80;
}

.input-group-text {
    color: #495057;
    text-align: center;
    white-space: nowrap;
    background-color: #e9ecef;
    border: 1px solid #1b1e21;
    border-right-width: 3px;
    border-left-width: 2px;
    border-top-width: 2px;
    border-bottom-width: 2px;
    /* border-radius: .25rem; */
}
       
