/* Empty file, you can use customization.css file to override Portal styles easily without migration problem.
   You should take a look at portal.css and portal-variables.css file to see how many variables that Portal supports for customizing.
   ** Portal variables are stored in portal-variables.css
   ** Portal default styles are stored in portal.css
*/

@charset "UTF-8";

/********** START OVERRIDING VARIABLES **********/
/* IMPORTANT: PUT YOUR OVERRIDDEN VARIABLES INSIDE ROOT TAG */
:root {
    /*
    project relalted variables
    */

    --header-card-height: 56px;

    /* Customize background color of button (except Cancel button), background color of selected checkbox/radio button
       background color of process chain (except waiting state), portal header bar, label and bottom border of active input field
       sidebar anchor, text color of active tab
    */

    --primary-color-h: 206;
    --primary-color-s: 69%;
    --primary-color-l: 30%;
    --primary-color: hsl(206, 69%, 30%);

    --primary-dark-color: hsl(215, 100%, 33%);

    --ivy-primary-color-h: 206;
    --ivy-primary-color-s: 69%;
    --ivy-primary-color-l: 30%;
    --ivy-primary-color: hsl(206, 69%, 30%);

    --ivy-primary-light-color: hsl(208, 89%, 47%);
    --ivy-primary-dark-color: hsl(208, 58%, 22%);
    --ivy-primary-darker-color: hsl(215, 100%, 33%);

    /* Customize text, icon color of button, checkbox, and other elements */
    --primary-text-color: hsl(0, 0%, 0%);
    --ivy-primary-text-color: hsl(0, 0%, 100%);
    --button-text-color: var(--ivy-primary-text-color);

    /*
    --home-logo-width: 230px;
    --home-logo-height: 60px;
    --small-home-logo-width: 128px;
    --small-home-logo-height: 128px;
    */

    /* Customize text, icon color of button, checkbox, and other elements */
    --primary-color-grey-light: hsl(180, 1%, 85%);
    --ivy-primary-color-grey-light: hsl(214, 30%, 95%);

    --card-box-shadow: 0px 4px 16px rgba(27, 27, 27, 0.16);
    --card-border-radius: 5px;
    --body-background-color: var(--ivy-primary-color-white);
    --accordion-header-active-background-color: var(--ivy-primary-color-grey-light);
    --accordion-header-background-color: hsl(214, 30%, 95%);

}
/********** END OVERRIDING VARIABLES **********/

/********** START OVERRIDING PORTAL STYLES ****/
.login-body {
    background-image: url('https://datahub.curaden.com/Portal/faces/javax.faces.resources/background.jpg?ln=xpertivy-branding');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100vh;
}

.login-panel {
    background: rgba(255, 255, 255, 0.4);
    border: 2px solid white;
    border-radius: 15px;
    padding: 20px;
    width: 90%;
    max-width: 400px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    box-sizing: border-box;
}

.login-body .login-wrapper .login-panel {
    width: 100%;
    height: 100%;
    text-align: center;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 1 1 100%;
}

.login-body .login-wrapper {
    height: 50vh;
}

.login-panel h4 {
    color: #555;
}
/********** END OVERRIDING PORTAL STYLES ****/