.download-link {
    display: inline-block;
    background-color: #007ad9;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 3px;
    font-size: 14px;
}

.download-link:hover {
    background-color: #005ba3;
    color: white;
}

.item-name {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin: 0 0 10px 0;
}

.item-description {
    color: #666;
    line-height: 1.5;
    margin: 0 0 15px 0;
}

.download-item {
    background-color: white;
    padding: 25px;
    margin-bottom: 15px;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    min-width: 35rem !important;
}

/* Main layout container */
.login-container {
    display: flex;
    width: 100%;
    background: linear-gradient(to right, rgba(6, 31, 64, 0.05) 40%, #ffffff 45%);
}

.login-body-inner{
    width: 60%;
    margin-left: 40%;
    float: right;
}

/* Left side (image with overlay) */
.image-container {
    position: fixed;
    width: 40%;
    overflow: hidden;
    height: 100vh;
    /*overflow: hidden;*/
}

.biometric-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.external-logo {
    position: relative;
    object-fit: cover;
    height: 50px;
    width: 150px;
    float: left;
}

.topbar-title-container{
    position: relative !important;
}

/* Blur overlay positioned on top of image */
.blur-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(6, 31, 64, 0.4);
    /*backdrop-filter: blur(4px);*/
    /*-webkit-backdrop-filter: blur(4px); !* For Safari *!*/

    z-index: 1;
}

/* Text overlay goes above blur */
.overlay-text {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
}

.overlay-text .contacts{
    .contact-item{
        display: block;
        i{
            padding-right: 3px;
        }
    }
}

/* Right side (form) */
.form-side {
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background: #ffffff;
}

/* Responsive adjustment for small screens */
@media screen and (max-width: 768px) {
    .login-container {
        flex-direction: column;
    }
    .image-container,
    .form-side {
        width: 100%;
        height: 50%;
    }
}

.login-form{
    margin: auto !important;
}

.top-bar-form{
    position: fixed;
    width: 60%;
}

.scrollable-content{
    /*overflow: scroll;*/
}

/* Keep responsiveness for small screens */
@media (max-width: 768px) {
    .responsiveForm .labelCol,
    .responsiveForm .fieldCol {
        display: block !important;
        width: 100% !important;
        text-align: left !important; /* stack labels on mobile */
        margin-bottom: 0.25rem;
    }
}

/* Fix widths for desktop/tablet */
.responsiveForm .labelCol {
    width: 180px;           /* fixed width wide enough for longest label + colon */
    text-align: right;
    padding-right: 0.5rem;  /* space between label and input */
    white-space: nowrap;    /* prevent label wrapping */
    vertical-align: middle;
    font-weight: 600;
    font-size: 1rem;
}

.responsiveForm .fieldCol {
    width: 320px;          /* fixed width for all inputs */
}

/* Make inputs stretch to full column width */
.responsiveForm .fieldCol > * {
    width: 100% !important;
    box-sizing: border-box;
}



/* Continuum CSS */
/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Segoe UI", sans-serif;
}

body, html {
    height: 100%;
    width: 100%;
}

/* Main container */
.container {
    display: flex;
    height: 100vh;
    width: 100%;
}

/* Left Section with background image */
.left {
    flex: 1;
    background: url("/javax.faces.resource/HIK homepage Image.png.xhtml?ln=images") no-repeat center center/cover;
    position: relative;
}

.overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.overlay h1 {
    font-size: 3rem;
    color: white;
    font-weight: bold;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
}

/* Right Section */
.right {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.login-card {
    background: white;
    padding: 2.5rem;
    width: 420px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    text-align: center;
}

.logo {
    margin-bottom: 0.5rem;
}

.login-card h2 {
    margin-bottom: 1.5rem;
    color: #003366;
}

label {
    display: block;
    text-align: left;
    margin: 0.5rem 0 0.3rem;
    font-size: 14px;
    font-weight: 600;
}

.input {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    background: rgba(108, 117, 125, 0.3) !important;
    border-radius: 6px;
    font-size: 14px;
}

.password-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
}

.password-container label {
    margin: 0;
}

.options-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 1rem 0;
}

.checkbox-group {
    display: flex;
    align-items: center;
}

.checkbox-label {
    margin-left: 0.5rem;
}

.forgot {
    font-size: 13px;
    color: #0056b3;
    text-decoration: none;
}

.forgot:hover {
    text-decoration: underline;
}


.btn {
    width: 100%;
    padding: 10px;
    background: #0056b3;
    border: none;
    color: white;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
}

.btn:hover {
    background: #004090;
}
