html, body{ 
    height: 100%;
    overflow: auto;
  }

body {
    background: rgb(235, 232, 232);
    height: auto; 
    min-height: calc(100vh - 16px);
}

.container {
    /* font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji"; */
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.2;
    color: #212529;
    text-align: left;

    margin: 0px;
    padding: 0px;
    width: 100%;
    max-width: 100%;
    height: 100%;
    min-height: 100%;
    /* padding-bottom: 20px; */
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: calc(100vh - 16px);

}

#content {
    border: 2px solid #DBDBDB;
    background: white;
    text-align: left;
    padding: 20px;
    width: 40%;

}

@media (max-width: 768px){
    #content{
        width: 100%;
    }
}

.btn {
    height: 32px;
    border: 0px;
    border-radius: 0px;
    border-style: solid;
    border-color: #2bbfd9;
    background: #2bbfd9;
    color: white;
    width: 80px;
    margin: 10px;
}

.btn:hover{
    opacity: 0.8;
}

.btn:disabled{
    opacity: 0.65;
}

input{
    width: 200px;
    line-height: 25px;
}

.errorlabel{
    font-size: 14px;
    color: #d61313;
}