﻿
html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
    overflow-x: hidden;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.full-page-login-canvas {
    position: relative;
    width: 100vw;
    height: 100vh;
    min-height: 100vh;
    overflow: hidden;
}


.full-screen-bg-asset {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: left center;
    z-index: 1;
}

/* Layer Layout System */
.login-content-overlay {
    position: absolute;
    top: -30px;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    background: linear-gradient(90deg, rgba(255,255,255,0) 30%, rgba(255,255,255,0.15) 100%);
}

.full-height {
    height: 100%;
}


.row-flex-end {
    display: flex !important;
    justify-content: flex-end;
    align-items: center;
    height: 100%;
    padding-right: 6%;
}



.floating-login-card {
    background: rgba(240, 248, 255, 0.95);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 16px;
    padding: 45px 35px;
    width: 100%;
    max-width: 400px;
    margin-left: auto;
    box-sizing: border-box;
    border: 1px solid rgba(59, 130, 246, 0.25);
    box-shadow: 0 15px 35px rgba(59, 130, 246, 0.18), 0 5px 15px rgba(30, 64, 175, 0.12);
}

.header-main {
    width: 100%;
}

    .header-main .main-icon {
        margin-bottom: 12px;
    }

    .header-main .imsiimg {
        max-height: 50px;
        width: auto;
    }

    .header-main h2 {
        font-size: 24px;
        font-weight: 700;
        color: #111111;
        margin: 0 0 30px 0;
    }

/* Fields Configurations */
.form-group-custom {
    margin-bottom: 20px;
}

    .form-group-custom label {
        display: block;
        margin-bottom: 8px;
        font-size: 13px;
        font-weight: 600;
        color: #4b5563;
    }


.icon1 {
    position: relative;
    width: 100%;
    display: block;
}


    .icon1 input {
        width: 100%;
        height: 48px;
        padding: 0 46px 0 46px !important;
        border: 1px solid #e5e7eb;
        border-radius: 12px;
        background: #edf2f9;
        font-size: 14px;
        color: #1f2937;
        box-sizing: border-box;
        transition: all 0.2s ease;
    }

        .icon1 input:focus {
            border-color: #1777F1;
            background: #ffffff;
            outline: none;
        }


    .icon1 span.left-field-icon,
    .icon1 span.fa-user,
    .icon1 span.fa-envelope {
        position: absolute !important;
        left: 18px !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
        color: #9ca3af !important;
        font-size: 14px !important;
        z-index: 5 !important;
        pointer-events: none;
    }


    .icon1 span.toggle-password-icon {
        position: absolute !important;
        right: 18px !important;
        left: auto !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
        color: #9ca3af !important;
        font-size: 14px !important;
        cursor: pointer !important;
        z-index: 5 !important;
    }


        .icon1 span.toggle-password-icon:hover {
            color: #1777F1 !important;
        }

.login-check-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
    margin-bottom: 25px;
}

.checkbox {
    font-size: 13px;
    color: #4b5563;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
}

.forgot-pass-link {
    font-size: 13px;
    color: #1777F1;
    text-decoration: none;
}

/* Submission Blueprint Buttons */
.bgclr1 {
    background: #1777F1 !important;
    color: #ffffff !important;
    font-size: 15px;
    font-weight: 600;
    height: 48px !important;
    border: none !important;
    border-radius: 12px !important;
    width: 100%;
    cursor: pointer;
}

.alternative-access-row {
    margin-top: 25px;
    font-size: 13px;
    color: #4b5563;
}

    .alternative-access-row a {
        color: #1777F1;
        text-decoration: none;
        font-weight: 600;
    }


@media (max-width: 991px) {
    .row-flex-end {
        justify-content: center;
        padding-right: 0 !important;
    }

    .modal-column-holder {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }

    .floating-login-card {
        max-width: 420px;
        background: rgba(255, 255, 255, 0.98);
    }
}

@media (max-width: 480px) {
    .floating-login-card {
        padding: 35px 20px;
        border-radius: 12px;
    }
}

.back-action-row {
    margin-top: 15px;
}

.btn-back-match {
    height: 48px !important;
    border-radius: 12px !important;
    font-size: 15px;
    font-weight: 600;
    width: 100%;
    border: none !important;
    cursor: pointer;
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #374151 !important;
    color: #ffffff !important;
    box-shadow: 0 4px 12px rgba(55, 65, 81, 0.15);
    transition: background 0.2s ease, transform 0.1s ease;
}

    .btn-back-match:hover {
        background: #1f2937 !important;
    }

    .btn-back-match:active {
        transform: scale(0.99);
    }


    .btn-back-match span.fa-arrow-left {
        font-size: 13px;
        color: #ffffff !important;
    }
