﻿.ui-widget-header
{
    border: 0px;
    background: #FFFFFF; /*{bgColorHeader}*/
    color: #222222 /*{fcHeader}*/;
    font-weight: bold;
}


.ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default
{
    border: 1px solid #7A1609 /*{borderColorActive}*/;
    background: #F8F2F4 /*{bgColorActive}*/;
    color: #212121 /*{fcActive}*/;
}
.ui-state-active, .ui-widget-content .ui-state-active, .ui-widget-header .ui-state-active
{
    border: 1px solid #7A1609 /*{borderColorDefault}*/;
    background: #D2AEBA /*{bgColorDefault}*/;
    font-weight: normal /*{fwDefault}*/;
    color: #555555 /*{fcDefault}*/;
}

.ui-widget
{
    font-family: Verdana,Arial,sans-serif /*{ffDefault}*/;
    font-size: 1.1em /*{fsDefault}*/;
}
.ui-widget .ui-widget
{
    font-size: 1em;
}
.ui-widget input, .ui-widget select, .ui-widget textarea, .ui-widget button
{
    font-family: Verdana,Arial,sans-serif /*{ffDefault}*/;
    font-size: 1em;
}
.ui-widget-content
{
    border: 1px none #aaaaaa /*{borderColorContent}*/;
    background: #FCFCFC /*{bgColorContent}*/ url("/App_Themes/Default/images/ui-bg_flat_75_ffffff_40x100.png") /*{bgImgUrlContent}*/ 50% /*{bgContentXPos}*/ 50% /*{bgContentYPos}*/ repeat-x /*{bgContentRepeat}*/;
    color: #222222 /*{fcContent}*/;
}
.ui-widget-content a
{
    color: #222222 /*{fcContent}*/;
}

.ui-widget-header
{
    border: 0px;
    background: #FCFCFC; /*{bgColorHeader}*/
    color: #222222 /*{fcHeader}*/;
    font-weight: bold;
}

.CaculatedField
{
    font-size: 11px;
    color: #CC0033;
    font-weight: bold;
}

.radioLeft
{
    float: left;
}

.textBlock
{
    margin-left: 30px;
    display: block;
}

.ColStyle
{
    width: 200px;
}

.myDialogPosition
{
    position: fixed;
    top: 50%;
}

.studyeditlinkbutton
{
    margin-left:10px;
}

#maincontent table a.studyeditlinkbutton:link
{
    color: #6699ff;
}
#maincontent table a.studyeditlinkbutton:hover
{
    color: Orange;
}

/* ==========================================================================================
   ANZTCT / Entra ASTRO - Standalone Entra Sign-in Notice Styling
   Purpose:
     - Provides a clean Microsoft Entra sign-in/pre-login card style.
     - Keeps styling outside Default.aspx and EntraPreLoginNotice.aspx.
     - Adds ANZTCT brand image/footer support similar to the legacy ASTRO login experience.
     - Supports dual action buttons for current ASTRO and secure ASTRO transition path.
   Updated : 31-Jul-2026
   ========================================================================================== */

html,
body {
    height: 100%;
    margin: 0;
    padding: 0;
}

.entra-prelogin-body {
    font-family: "Segoe UI", Arial, Helvetica, sans-serif;
    background: #f5f7fb;
    color: #1f2937;
}

.page-shell {
    min-height: 100%;
    display: table;
    width: 100%;
}

.page-center {
    display: table-cell;
    vertical-align: middle;
    text-align: center;
    padding: 32px 16px;
}

.notice-card {
    width: 100%;
    max-width: 520px;
    margin: 0 auto;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.10);
    text-align: left;
    overflow: hidden;
}

.notice-header {
    padding: 22px 28px 14px 28px;
    border-bottom: 1px solid #eef2f7;
}

.product-name {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #2563eb;
    margin-bottom: 10px;
}

.notice-title {
    font-size: 24px;
    line-height: 1.25;
    font-weight: 700;
    color: #111827;
    margin: 0;
}

.notice-body {
    padding: 22px 28px 26px 28px;
}

.notice-message {
    font-size: 16px;
    line-height: 1.55;
    color: #374151;
    margin: 0 0 14px 0;
}

.notice-supporting {
    font-size: 14px;
    line-height: 1.55;
    color: #4b5563;
    margin: 0 0 24px 0;
}

.action-row {
    margin-top: 8px;
}

.primary-button {
    display: inline-block;
    min-width: 230px;
    border: 0;
    border-radius: 8px;
    background: #2563eb;
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.2;
    padding: 12px 20px;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    box-shadow: 0 8px 18px rgba(37, 99, 235, 0.20);
    box-sizing: border-box;
}

    .primary-button:hover {
        background: #1d4ed8;
    }

    .primary-button:focus {
        outline: 3px solid rgba(37, 99, 235, 0.30);
        outline-offset: 2px;
    }

/* ==========================================================================================
   Dual Action Buttons
   Expected UI:
     [ Use ASTRO ]    [ Secure ASTRO ]
   ========================================================================================== */

.dual-action-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.secondary-button {
    display: inline-block;
    min-width: 150px;
    border: 1px solid #7A1609;
    border-radius: 8px;
    background: #ffffff;
    color: #7A1609;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.2;
    padding: 12px 20px;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    box-sizing: border-box;
}

    .secondary-button:hover {
        background: #7A1609;
        color: #ffffff;
        text-decoration: none;
    }

    .secondary-button:focus {
        outline: 3px solid rgba(122, 22, 9, 0.25);
        outline-offset: 2px;
    }

.dual-action-row .primary-button {
    min-width: 150px;
}

.trust-text {
    margin-top: 18px;
    font-size: 12px;
    line-height: 1.45;
    color: #6b7280;
}

.diagnostic-message {
    margin-top: 16px;
    padding: 12px 14px;
    border-radius: 8px;
    border: 1px solid #fecaca;
    background: #fef2f2;
    color: #991b1b;
    font-size: 13px;
    line-height: 1.45;
}

.notice-footer {
    padding: 18px 28px 20px 28px;
    background: #f9fafb;
    border-top: 1px solid #eef2f7;
    text-align: center;
}

.notice-brand-logo {
    max-width: 260px;
    height: auto;
    display: inline-block;
    margin-bottom: 10px;
}

.notice-footer-text {
    font-size: 12px;
    color: #6b7280;
}

.wait-message {
    font-family: "Segoe UI", Arial, Helvetica, sans-serif;
    padding: 30px;
    color: #374151;
    text-align: center;
    font-size: 16px;
}

@media screen and (max-width: 560px) {
    .notice-card {
        max-width: 100%;
        border-radius: 10px;
    }

    .notice-header,
    .notice-body,
    .notice-footer {
        padding-left: 20px;
        padding-right: 20px;
    }

    .notice-title {
        font-size: 22px;
    }

    .notice-brand-logo {
        max-width: 220px;
    }

    .primary-button {
        width: 100%;
        min-width: 0;
    }

    .dual-action-row {
        display: block;
    }

        .dual-action-row .secondary-button,
        .dual-action-row .primary-button {
            width: 100%;
            min-width: 0;
            box-sizing: border-box;
            margin-bottom: 10px;
        }

        .dual-action-row .primary-button {
            margin-bottom: 0;
        }
}