/* ===================================================================
| ezClocker Styles for Employee Signup Page                         |
|                                                                   |
| HTML Location:                                                    |
|   /src/main/webapp/employee-signup/index.html                     |
|                                                                   |
| DO NOT USE WITH ANY OTHER PAGES                                   |
=================================================================== */


/* -------------------------------------------------------------------
| Desktop Screen Styles (default)                                   |
------------------------------------------------------------------- */
html {
    height: 100%;
    width: 100%;
}

body {
    margin: var(--ezBodyMarginSize);
    padding: var(--ezBodyPaddingSize);
    width: 100%;
    height: 100%;
    background-color: var(--ezAlphaBackgroundWhite1);
    background-size: var(--ezBackgroundImageSize);
    background-image: var(--ezBackgroundImage);
    color: var(--ezContentFontColor);
    font-size: var(--ezContentFontSize);
    font-family: var(--ezFontFamily);
    font-weight: var(--ezContentFontWeight);
    font-style: var(--ezContentFontStyle);
}

.ezEmployeeSignupContent {
    display: grid;
    height: 100%;
    width: 100%;
    grid-template-columns: 100%;
    grid-template-rows: 100%;
    justify-content: stretch;
    align-content: center;
    background-color: transparent;
}

.ezEmployeeSignupDialogContainer {
    display: grid;
    justify-content: center;
    align-content: center;
    grid-template-columns: auto max-content auto;
    background-color: transparent;
}

.ezEmployeeSignupDialog {
    display: grid;
    padding: 20px;
    justify-content: stretch;
    align-content: center;
    grid-template-columns: auto;
    grid-template-rows: auto auto;
    background-color: var(--ezClockerWhite);
    border-color:  var(--ezClockerSilver);
    border-width: 1px;
    border-style: solid;
}

.ezEmployeeSignupHeaderContainer {
    display: grid;    
    margin-bottom: 20px;
    grid-template-columns: auto;
    grid-template-rows: auto auto;
    align-content: center;
    justify-content: center;
    background-color: var(--ezClockerWhite);
}

.ezEmployeeSignupDialogInputContainer {
    display: grid;
    padding: 10px;
    row-gap: 10px;
    grid-template-columns: 90%;
    grid-template-rows: auto;
    justify-content: center;
}

.ezEmployeeSignupRightSpacer {
    background-color: transparent;
}

.ezEmployeeSignupLeftSpacer {
    background-color: transparent;
}

.ezPasswordShowHideImg {
    height: 24px;
    padding-top: 2px
}


/* -------------------------------------------------------------------
| Large Tablet Screen Styles (https://yesviz.com/laptops.php)       |
------------------------------------------------------------------- */
@media screen and (max-width: 1023px) {
 
}

/* -------------------------------------------------------------------
| Small Tablet Screen Styles (https://yesviz.com/tablets.php)       |
------------------------------------------------------------------- */
@media screen and (max-width: 768px) {
   
}

/* -------------------------------------------------------------------
| Phone Screen Styles  (https://yesviz.com/mobiles.php)             |
------------------------------------------------------------------- */
@media screen and (max-width: 480px) {
    .ezEmployeeSignupDialogInputContainer {
        display: grid;
        padding: 10px;
        row-gap: 10px;
        grid-template-columns: 90%;
        grid-template-rows: auto;
        justify-content: center;
    }
    
    .ezEmployeeSignupDialog {
        display: grid;
        padding: 0;
        justify-content: stretch;
        align-content: center;
        grid-template-columns: auto;
        grid-template-rows: auto;
        background-color: var(--ezClockerWhite);
        border-style: none;
    }

    .ezEmployeeSignupDialogContainer {
        display: grid;
        margin-top: 20px;
        justify-content: center;
        align-content: start;
        grid-template-columns: auto;
        background-color: var(--ezClockerWhite);
    }
    
    .ezEmployeeSignupRightSpacer {
        display: none;
    }
    
    .ezEmployeeSignupLeftSpacer {
        display: none;
    }
}

/* -------------------------------------------------------------------
| Wearable Screen Style  (https://yesviz.com/watches.php)           |
------------------------------------------------------------------- */
@media screen and (max-width: 319px) {
    body {
        width: 100%;
        height: 100%;
        background-image: none;
        background-color: var(--ezClockerWhite);
    }
    
    .ezEmployeeSignupHeaderContainer {
        display: grid;
        margin-top: 8px;
        grid-template-columns: auto;
        grid-template-rows: auto auto;
        align-content: center;
        justify-content: center;
        background-color: var(--ezClockerWhite);
    }

    .ezEmployeeSignupDialogInputContainer {
        display: grid;
        padding: 0;
        row-gap: 0;
        grid-template-columns: 90%;
        grid-template-rows: auto;
        justify-content: center;
    }
    
    .ezEmployeeSignupDialog {
        display: grid;
        padding: 0;
        justify-content: stretch;
        align-content: center;
        grid-template-columns: auto;
        grid-template-rows: auto;
        background-color: var(--ezClockerWhite);
        border-style: none;
    }

    .ezEmployeeSignupDialogContainer {
        display: grid;
        margin-top: 2px;
        justify-content: center;
        align-content: start;
        grid-template-columns: auto;
        background-color: var(--ezClockerWhite);
    }
    
    .ezEmployeeSignupRightSpacer {
        display: none;
    }
    
    .ezEmployeeSignupLeftSpacer {
        display: none;
    }
}
