/* /Pages/FacilitySetup.razor.rz.scp.css */
/* =========================================================
   FACILITY SETUP PAGE
   ========================================================= */

.facility-setup-page[b-1d7sx5m5bh] {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f8fc;
    padding: 40px 20px;
    box-sizing: border-box;
}


/* =========================================================
   MAIN CARD
   ========================================================= */

.facility-setup-container[b-1d7sx5m5bh] {
    width: 100%;
    max-width: 720px;
    background: #ffffff;
    border-radius: 16px;
    padding: 36px 40px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    box-sizing: border-box;
}


/* =========================================================
   HEADER
   ========================================================= */

.facility-setup-header[b-1d7sx5m5bh] {
    text-align: center;
    margin-bottom: 30px;
}

.facility-setup-title[b-1d7sx5m5bh] {
    font-size: 28px;
    font-weight: 700;
    color: #123b6d;
    margin-bottom: 8px;
}

.facility-setup-subtitle[b-1d7sx5m5bh] {
    font-size: 15px;
    color: #6b7280;
}


/* =========================================================
   FORM
   ========================================================= */

.facility-form[b-1d7sx5m5bh] {
    display: flex;
    flex-direction: column;
    gap: 18px;
}


/* =========================================================
   FORM GROUP
   ========================================================= */

.form-group[b-1d7sx5m5bh] {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.form-label[b-1d7sx5m5bh] {
    font-size: 14px;
    font-weight: 600;
    color: #374151;
}

.required[b-1d7sx5m5bh] {
    color: #dc2626;
}


/* =========================================================
   INPUTS / SELECT
   ========================================================= */

.form-control[b-1d7sx5m5bh] {
    width: 100%;
    min-height: 44px;
    padding: 10px 12px;
    border: 1px solid #d1d5db;
    border-radius: 7px;
    background: #ffffff;
    color: #111827;
    font-size: 14px;
    box-sizing: border-box;
    outline: none;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

    .form-control:focus[b-1d7sx5m5bh] {
        border-color: #3b82f6;
        box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.12);
    }

    .form-control[b-1d7sx5m5bh]::placeholder {
        color: #9ca3af;
    }


/* =========================================================
   TEXTAREA
   ========================================================= */

textarea.form-control[b-1d7sx5m5bh] {
    min-height: 90px;
    resize: vertical;
}


/* =========================================================
   TWO COLUMN ROW
   ========================================================= */

.form-row[b-1d7sx5m5bh] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}


/* =========================================================
   ERROR MESSAGE
   ========================================================= */

.facility-error[b-1d7sx5m5bh] {
    padding: 11px 13px;
    border: 1px solid #f5c2c7;
    border-radius: 7px;
    background: #f8d7da;
    color: #842029;
    font-size: 13px;
    line-height: 1.4;
}


/* =========================================================
   SAVE BUTTON
   ========================================================= */

.primary-button[b-1d7sx5m5bh] {
    width: 100%;
    min-height: 46px;
    margin-top: 8px;
    border: none;
    border-radius: 7px;
    background: #3b82f6;
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.15s ease, transform 0.05s ease;
}

    .primary-button:hover[b-1d7sx5m5bh] {
        background: #2563eb;
    }

    .primary-button:active[b-1d7sx5m5bh] {
        transform: translateY(1px);
    }

    .primary-button:disabled[b-1d7sx5m5bh] {
        background: #93c5fd;
        cursor: not-allowed;
    }


/* =========================================================
   LOADING
   ========================================================= */

.loading-container[b-1d7sx5m5bh] {
    display: flex;
    justify-content: center;
    margin-top: 12px;
}

.loading-spinner[b-1d7sx5m5bh] {
    width: 22px;
    height: 22px;
    border: 3px solid #dbeafe;
    border-top-color: #3b82f6;
    border-radius: 50%;
    animation: facility-spin-b-1d7sx5m5bh 0.8s linear infinite;
}

@keyframes facility-spin-b-1d7sx5m5bh {
    to {
        transform: rotate(360deg);
    }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 700px) {

    .facility-setup-page[b-1d7sx5m5bh] {
        align-items: flex-start;
        padding: 20px 12px;
    }

    .facility-setup-container[b-1d7sx5m5bh] {
        padding: 25px 20px;
        border-radius: 12px;
    }

    .facility-setup-title[b-1d7sx5m5bh] {
        font-size: 24px;
    }

    .form-row[b-1d7sx5m5bh] {
        grid-template-columns: 1fr;
        gap: 18px;
    }
}
/* /Pages/Login.razor.rz.scp.css */
/* ============================================================
   LOGIN PAGE
   ============================================================ */

.login-page[b-07xm7nauo2] {
    min-height: 100vh;
    padding: 20px;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
}

/* ============================================================
   MAIN CONTAINER
   ============================================================ */

.login-container[b-07xm7nauo2] {
    width: 100%;
    max-width: 1250px;
}


/* ============================================================
   DESKTOP CONTENT
   ============================================================ */

.login-content[b-07xm7nauo2] {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    align-items: center;
    gap: 80px;
}


/* ============================================================
   BANNER
   ============================================================ */

.banner-container[b-07xm7nauo2] {
    width: 100%;
    max-width: 650px;
    height: 375px;
    border-radius: 40px;
    overflow: hidden;
    margin: 0 auto;
}

.banner-image[b-07xm7nauo2] {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}


/* ============================================================
   LOGIN FORM
   ============================================================ */

.login-form[b-07xm7nauo2] {
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}


/* ============================================================
   TITLE
   ============================================================ */

.title-section[b-07xm7nauo2] {
    display: flex;
    flex-direction: column;
    gap: 4px;
    text-align: center;
}

.page-title[b-07xm7nauo2] {
    font-size: 26px;
    font-weight: 700;
    color: #2563EB;
}

.page-subtitle[b-07xm7nauo2] {
    font-size: 15px;
    color: #6B7280;
}


/* ============================================================
   INPUT
   ============================================================ */

.form-input[b-07xm7nauo2] {
    width: 100%;
    box-sizing: border-box;
    padding: 13px 14px;
    border: 1px solid #D1D5DB;
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    outline: none;
}

    .form-input:focus[b-07xm7nauo2] {
        border-color: #3A7BFF;
    }


/* ============================================================
   INFORMATION
   ============================================================ */

.login-information[b-07xm7nauo2] {
    margin-top: -8px;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    color: #2563EB;
}


/* ============================================================
   BUTTON
   ============================================================ */

.primary-button[b-07xm7nauo2] {
    width: 100%;
    border: none;
    border-radius: 8px;
    padding: 13px;
    background-color: #3A7BFF;
    color: white;
    font-size: 16px;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
}

    .primary-button:hover[b-07xm7nauo2] {
        background-color: #2563EB;
    }

    .primary-button:disabled[b-07xm7nauo2] {
        opacity: 0.6;
        cursor: not-allowed;
    }


/* ============================================================
   LOADING
   ============================================================ */

.loading-container[b-07xm7nauo2] {
    display: flex;
    justify-content: center;
    align-items: center;
}

.loading-spinner[b-07xm7nauo2] {
    width: 28px;
    height: 28px;
    border: 3px solid #D1D5DB;
    border-top-color: #3A7BFF;
    border-radius: 50%;
    animation: spin-b-07xm7nauo2 0.8s linear infinite;
}

@keyframes spin-b-07xm7nauo2 {
    to {
        transform: rotate(360deg);
    }
}


/* ============================================================
   GUIDE
   ============================================================ */

.guide-section[b-07xm7nauo2] {
    margin-top: 8px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.guide-title[b-07xm7nauo2] {
    font-size: 15px;
    font-weight: 700;
    text-align: center;
}

.guide-links[b-07xm7nauo2] {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.guide-link[b-07xm7nauo2] {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 0;
    border: none;
    background: transparent;
    color: #2563EB;
    font-size: 13px;
    font-family: inherit;
    cursor: pointer;
}

    .guide-link:hover[b-07xm7nauo2] {
        text-decoration: underline;
    }

.guide-icon[b-07xm7nauo2] {
    font-size: 17px;
}

.video-icon[b-07xm7nauo2] {
    font-size: 15px;
}

/* ============================================================
   MOBILE
   ============================================================ */

@media (max-width: 700px) {

    .login-page[b-07xm7nauo2] {
        padding: 10px 20px 20px 20px;
        align-items: flex-start;
    }

    .login-container[b-07xm7nauo2] {
        max-width: 500px;
    }

    .login-content[b-07xm7nauo2] {
        display: flex;
        flex-direction: column;
        gap: 18px;
    }

    .banner-container[b-07xm7nauo2] {
        width: 100%;
        max-width: none;
        height: 170px;
    }

    .login-form[b-07xm7nauo2] {
        width: 100%;
        max-width: none;
    }

    .page-title[b-07xm7nauo2] {
        font-size: 20px;
    }

    .page-subtitle[b-07xm7nauo2] {
        font-size: 14px;
    }
}

.login-error[b-07xm7nauo2] {
    margin-top: 8px;
    padding: 10px 12px;
    border: 1px solid #f5c2c7;
    border-radius: 6px;
    background-color: #f8d7da;
    color: #842029;
    font-size: 13px;
    text-align: left;
}

/* =========================================================
   OTP SECTION
   ========================================================= */

.otp-section[b-07xm7nauo2] {
    width: 100%;
}


/* =========================================================
   OTP MESSAGE
   ========================================================= */

.otp-message[b-07xm7nauo2] {
    font-size: 14px;
    color: #444;
    margin-bottom: 8px;
}


/* =========================================================
   RESEND OTP
   ========================================================= */

.resend-button[b-07xm7nauo2] {
    border: none;
    background: transparent;
    color: #2563eb;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    padding: 6px 0;
    margin-top: 4px;
}

    .resend-button:hover[b-07xm7nauo2] {
        text-decoration: underline;
    }

    .resend-button:disabled[b-07xm7nauo2] {
        opacity: 0.5;
        cursor: default;
    }


/* =========================================================
   ERROR
   ========================================================= */

.login-error[b-07xm7nauo2] {
    width: 100%;
    margin-top: 8px;
    margin-bottom: 8px;
    color: #dc2626;
    font-size: 14px;
    text-align: left;
}


/* =========================================================
   LOGIN INFORMATION
   ========================================================= */

.login-information[b-07xm7nauo2] {
    margin-top: 10px;
}
