body {
    background-color: #edf4f7;
    position: relative;
}
header {
    border-radius: 0% 0% 200% 200%/0% 0% 30% 30%;
    background-color: #ffffff;
    top: 0;
    left: auto;
    right: 0;
    position: fixed;
    width: 100%;
    display: flex;
    z-index: 1100;
    box-sizing: border-box;
    flex-shrink: 0;
    flex-direction: column;
}
.container {
    max-width: 1135px;
    width: 100%;
    display: block;
    box-sizing: border-box;
    margin-left: auto;
    margin-right: auto;
    padding-left: 0;
    padding-right: 0;
}
.toolbar {
    height: 88px;
    padding: 0px;
    min-height: 56px;
    display: flex;
    position: relative;
    align-items: center;
}
main {
    margin-top: 210px;
}
.logo {
    width: 143px;
    height: 32px;
}
.paper {
    background-color: white;
    width: 550px;
    margin-left: auto;
    margin-right: auto;
    padding: 20px;
    border-radius: 24px;
}

.paperHeader {
    margin: 4px 0px 6px;
    border-bottom: 1px solid #aaa;
    padding-bottom: 5px;
}
.headerTitle {
    font-size: 16px;
    font-weight: 600;
    color: rgb(0, 0, 0);
}
.headerDetails {
    font-size: 12px;
    margin-top: 5px;
}

.paperBody {
    padding-top: 10px;
}
.buttonContainer {
    display: flex;
    flex-direction: row-reverse;
    justify-content: start;
    padding-top: 10px;
}
.cancelButton {
    text-decoration: none !important;
    color: initial;
    margin-right: 5px;
    cursor: pointer;
    padding: 4px 16px;
    font-size: 12px;
    border-radius: 15px;
    background-color: white;
    border: 1px solid lightgrey;
    line-height: 20px;
}
.cancelButton:hover {
    background-color: lightgrey;
}
.saveButton {
    background-color: #43b4e4;
    cursor: pointer;
    color: #ffffff;
    border: 1px solid white;
    text-align: left;
    line-height: 1.71;
    padding: 4px 16px;
    font-size: 12px;
    border-radius: 15px;
}
.saveButton:hover {
    background-color: rgb(46 125 159);
}
.saveButton:disabled {
    background-color: rgb(206 206 206);
}
.pwd {
    border-bottom: 1px solid #ccc;
}
.pwd.weak {
    border-bottom-color: #fc3204;
}
.pwd.good {
    border-bottom-color: #ffcc00;
}
.pwd.strong {
    border-bottom-color: #78f708;
}
.pwd.very-strong {
    border-bottom-color: #339805;
}
.input-group-addon .fas {
    color: #999;
}