body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    margin: 0px;
}

.userbar {
    position: fixed;
    top: 0px;
    left: 0px;
    right: 0px;
    height: 24px;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    padding: 6px;
    font-family: 'Rubik', sans-serif;;
}

.container {
    display:flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    max-width: 500px;
    min-height: 250px;
    max-height: 75%;
    overflow: hidden;
}


.containerheader {
    display: flex;
    flex: 0 0 auto;
    flex-direction: row;
    align-items: center;
    font-size: 2rem;
    font-family: 'Rubik', sans-serif;
    padding: 10px 15px 0px 10px;
    color:#aaaaaa;
    font-weight: 700;
}

.redstarimage {
    width: 50px;
    margin-right: 5px;
    margin-left: -3px;
}

hr {
    border-top: 1px solid lightgrey;
    width: 90%;
}

.containerbody {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    align-items: stretch;
    padding: 10px;
    overflow: hidden;
}

.containerscroll {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    overflow: scroll;
}

@media only screen and (min-width:500px) {
    body {
        background-color: #f5f5f5;
    }

    .container {
        border: 1px solid #d0d0d0;
        box-shadow: 1px 1px 10px #d0d0d0;
        background-color: white;
    }
}

.formcontainer {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    padding: 10px;
}

form {
    display:flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0px;
    margin: 0px;
    min-width: 80%;
}

input {
    border-radius: 24px;
    height: 32px;
    border: 1px solid #888888;
    font-size: 1.1rem;
    margin: 8px 20px 8px 20px;
    width: 270px;
    padding-left: 10px;
    padding-right: 10px;
    color: #444444;
}

button {
    border-radius: 24px;
    height: 40px;
    width: 100px;
    border: 0px;
    color: white;
    font-size: initial;
    padding: 1px 20px 1px 20px;
    background:#149dcc;
    margin: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.messagecontainer {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    justify-content: center;
    align-items: center;
    padding-bottom: 15px;
    width: 100%;
}

.message {
    font-size: 1.4rem;
    font-family: 'Rubik', sans-serif;
    padding: 10px;
    max-width: 80%;
}

.stdlink {
    font-family: 'Rubik', sans-serif;
    font-size: 1.2rem;
    color: rgb(82, 81, 81);
}

.smallmessage {
    font-size: 1.0rem;
    font-family: 'Rubik', sans-serif;
    max-width: 80%;
    color: grey;
}

.smalllink {
    font-family: 'Rubik', sans-serif;
    font-size: 0.9rem;
    color: grey;
}

a:link { 
    text-decoration: none; 
} 
a:visited { 
    text-decoration: none; 
} 
a:hover { 
    text-decoration: none; 
} 

.footercontainer {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    justify-content: center;
    align-items: center;
    padding-top: 15px;
    width: 100%;
}


.loading {
    border: 4px solid white;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border-top-color: transparent;
    border-left-color: transparent;
    animation: spin 1s infinite ease-in;
}
  
@keyframes spin {
    0% {
      transform: rotate(0deg);
    }
  
    100% {
      transform: rotate(360deg);
    }
}

.accountbutton-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 100%
}

.accountbutton {
    border-radius: 5px;
    height: 60px;
    border: 0px solid #dddddd;
    font-size: initial;
    padding: 5px 2px 5px 2px;
    background:white;
    margin: 0px;
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.accountbutton:hover {
    background-color: #e4f3f8;
}

.accountbutton-main {
    font-size: 1.1rem;
    font-weight: 500;
    color: #666
}

.accountbutton-sub {
    font-size: 0.9rem;
    font-weight: 400;
    color: #999
}

.accountbutton-row .material-symbols-outlined {
    color: lightgray;
    cursor: pointer;
    margin-left: 10px;
}

.accountdivider {
    color: #eeeeee;
    margin: 0px;
}

/************* password creator *************/

.pwccontainer {
    display: flex;
    flex-direction: column;
}

.pwcinputcontainer {
    display: flex;
    flex-direction: row;
    position: relative;
    align-items: center;
}

.pwcview {
    position: absolute;
    right: 30px;
    color: grey;
    cursor: pointer;
    font-size: 18px!important;
}

.pwcindic {
    display: flex;
    flex-direction: column;
    padding: 0px 40px;
}

#pwcstrengh {
    line-height: 0px;
    font-size: 0.8rem;
    font-family: 'Rubik', sans-serif;
}

.pwcbars {
    display: flex;
    flex-direction: row;
    justify-content: stretch;
    height: 10px;
    border: 1px solid lightgrey;
}

.pwcbars div {
    flex: 5 5 0;
}

#pwcbar0 {
    flex: 1 1 0;
}