/* ASFA INJECTION - Global OVERRIDE CSS */
.UAT_environment {
    background-color: orangered;
    text-align: center;
    color: white; /* optional: improves contrast */
    padding: 10px; /* optional: adds space around the text */
    font-weight: bold; /* optional: makes it stand out */
    width: fit-content;
    margin-left: auto;
}

.dev_environment {
    background-color: deeppink;
    text-align: center;
    color: white; /* optional: improves contrast */
    padding: 10px; /* optional: adds space around the text */
    font-weight: bold; /* optional: makes it stand out */
    width: fit-content;
    margin-left: auto;
}

/* styles used only for signup portal page templates (not for saml) */

body.signupinitial-hide > * {
      visibility: hidden !important;
}
/* Optionally keep branding image visible whilst page is loading*/
body.signupinitial-hide #background_branding_container {
    display: block !important;

}
/*atrribute list input field to be 100% width so sits correctly with labels on top*/
#attributeList ul li input {
    height: 50px;
    width: 100%;
    border-radius: .5rem;
    text-indent: 20px;
    background-color: #fff !important;
    background-image: none !important;
    color: #555;
}

/*add gap between password and name fields*/
.Password reenterPassword_li {
padding-bottom: 3em;

}

/*  Force the background color to load before the image */
html, body {
    background-color: #fff !important; /* Change to your preferred color */
}

/* Ensure the background branding container respects this color */
#background_branding_container {
    background-color: #fff !important; /* Change this color */
}

    /* If the background image loads, allow it to display */
    #background_branding_container img {
        display: block;
        width: 100vw;
        height: 100vh;
        background-color: transparent !important; /* Prevents the branding color from interfering */
    }

img[data-tenant-branding-background="true"] {
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    position: fixed;
    left: 0;
    top: 0;
    z-index: -1;
    pointer-events: none; /* optional: avoid blocking clicks */
}

.buttons button {
    margin: 0 auto;
    width: 60%;
    height: 50px;
    background-color: #02c1d3 !important;
    border-radius: .5rem;
    border: none;
    color: #fff;
    font-size: 1em;
    margin-top: 10px
}

    .buttons button:hover {
        background-color: #1662c7;
        border-color: #204d74
    }
	
    /*if in future styles carry through to embedded password reset it will need this*/
.sendButton {
    width: 60%;
    min-height: 50px;
    height: auto;
    background-color: #02c1d3 !important;
    color: #fff;
    border-radius: .5rem;
}
/*  HIDE THE SYSTEM CREATE ACCOUNT LINK IF NOT HIDDEN BY CUSTOM POLICY */
#createAccount {
    display: none !important;
}

/* ASFA override - hide change email button during signup */
#attributeList ul li .attrEntry .verificationControlContent .changeClaims {
    display: none !important;
}
/*hide the cancel button that shows in the top right corner */
.buttons #cancel {
    display: none !important;
}


    .buttons #cancel:hover {
        display: none !important;
    }

    .buttons #cancel:before {
        display: none !important;
    }


.ASFA_Return_buttons {
    padding: 0;
    margin-left: auto;
    background: 0 0;
    border: 0;
    width: inherit;
    position: absolute;
    background-color: transparent;
    top: 5px;
    left: 15px;
    font-size: 1em;
    color: #505050;
    box-shadow: none;
    text-align: left;
    opacity: 1;
    height: 50px;
    border-radius: .5rem;
    margin-top: 10px;
    padding-block: 1px;
    padding-inline: 6px;
    display: inline-block
}

    .ASFA_Return_buttons:hover {
        color: #000 !important
    }

    .ASFA_Return_buttons :before {
        padding: 10px;
        vertical-align: sub;
        zoom: 90%;
        display: inline-block
    }

/* only displays on the saml template used for signin to all sites*/
.ASFA_signuptext {
    text-align: left;
    margin-top: 1rem;
 }


