#dialogText {
    color: #666;
    text-align: center;
    line-height: 24px;
    font-size: 16px;
}

#dialogText h1 {
    font-size: 24px;
    color: #333;
    line-height: 28px;
    font-family: 'graphik-semibold', sans-serif;
    font-weight: normal;
    margin: 10px 0;
}

#dialogWrap {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: table;
    background-color: #FFFFFF;
}

#dialogWrapCell {
    display: table-cell;
    text-align: center;
    vertical-align: middle;
}

#mainDialog {
    width: 600px;
    margin: 5px auto 125px auto;
    background-color: transparent;
    overflow: hidden;
    text-align: center;
}

#mainDialog > * {
    padding: 30px 0px;
}

#passArea {
    display: flex;
    flex-direction: row;
    padding: 0px;
    background-color: white;
    border: 2px solid #333;
    width: 300px;
    margin: 0 auto;
}

#passArea > * {
    margin: 5px auto;
}

#pass {
    flex-grow:2;
    width: 100%;
    padding: 4px 0px 4px 12px;
    font-size: 16px;
    line-height: 24px;
    font-family: 'graphik-regular', sans-serif;
    border: none;
    border-radius: 8px;
    color: #333;
    -webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
    -moz-box-sizing: border-box;    /* Firefox, other Gecko */
    box-sizing: border-box;         /* Opera/IE 8+ */
}


#pass::placeholder {
    color: #BBB;
}

#pass:focus {
    outline: none;
}

#messageWrapper {
    vertical-align: middle;
    line-height: 44px;
    font-size: 16px;
}

.notifyText {
    display: none;
}

#invalidPass {
    color: #DE0B0B;
}

.error {
    display: none;
    color: #DE0B0B;
}

#success {
    color: #158803;
}

#submitPass {
    width: 50px;
    border-radius: 8px;
    background-color: transparent;
    border: none;
    font-size: 18px;
    line-height: 32px;
    font-family: 'graphik-regular', sans-serif;
    color: #CCC;
    cursor: pointer;
}

#submitPass:hover {
    color: #333;
    -webkit-transition: color .3s;
    transition: color .7s;
}

#submitPass svg {
    width: 20px;
    height: 20px;
}

#contentFrame {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

#attribution {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    text-align: center;
    padding: 10px;
    font-size: 0.8em;
    color: #666;
    background-color: #FFFFFF;
}

#attribution a {
    font-family: 'graphik-medium';
    color: #666;
}

#attribution a:hover {
    -webkit-transition: opacity .3s;
    transition: opacity .3s;
    opacity: .7;
}