.loginBox{ 
    max-width: 500px;
    width: 100%;
    box-sizing: border-box;
    
    padding: 15px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 20px;

    background-color: var(--lightGrey);
    box-shadow: var(--grey-boxShadow);

    border-radius: 15px;
    font-size: 12px;
}

.loginTitle{
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 10px;
}

.loginLabel{
    display: block;
    margin-top: 8px;
    font-size: 12px;
    width: 200px;
}

.register__PasswordLine{
    display: flex;             /* switch into flex layout */
    flex-direction: row;       /* lay children out horizontally */
    align-items: center;       /* vertically align items to the center */
    width: 100%;               /* stretch to fill available width */
    height: 100%;              /* stretch to fill available height */
}

.loginInput{
    width: 100%;
    padding: 8px;
    margin-bottom:16px;
    margin-top:8px;
    box-sizing: border-box;
    border-radius: 15px;
    border: none;
}

.register__togglePWVisibilitySwitch{
    padding: 8px;
    margin-bottom:16px;
    margin-top:8px;
    align-items: center;      /* vertically centers the contents */
    justify-content: center;  /* horizontally center the contents */
    color: gray;   
}