.header {
    background-color: rgb(36, 47, 62);
    color: white;
    clear: both;
    text-align: left;
    height: 40px;
}

.div_header_title {
    font-weight: bold;
    font-size: large;
    vertical-align: middle;
    height: 40px;
    line-height: 40px;
    padding-left: 5px;
}

.body {
    background-color: rgb(20, 34, 51);
    min-height: 100vh;
    margin: 0;
    display: flex;
    flex-direction: column;
}
.div_body {
    padding-left: 10px;
    padding-right: 10px;
    flex-grow: 1;
}
.div_footer {
    background-color: rgb(39, 39, 39);
    color: white;
    text-align: center;
    height: 30px;
    line-height: 30px;
    font-size: small;
    width: 100%;
}

input {
    background-color: rgb(51, 51, 51);
    border: 0;
    outline: 0;
    border: solid 1px rgb(102, 102, 102);
    caret-color: white;
    height: 25px;
    color: white;
    width: auto;
    min-width: 200px;
    max-width: 30%;
    padding-left: 5px;
}

.button-enable {
    background-color: rgb(236, 114, 18);
    border: 0;
    outline: 0;
    border: solid 1px rgb(236, 114, 18);
    color: white;
    height: 25px;
}

.button-enable:hover {
    background-color: rgb(172, 110, 63);
    border: 0;
    outline: 0;
    border: solid 1px rgb(172, 110, 63);
    color: white;
    height: 25px;
}

.button-enable:active {
    -webkit-transition: border linear .2s, -webkit-box-shadow linear .1s;
    border-color: rgba(88, 105, 192, 0.75);
    -webkit-box-shadow: 0 0 18px rgba(88, 105, 192, 3);
}

.button-disable {
    background-color: rgb(70, 33, 5);
    border: 0;
    outline: 0;
    border: solid 1px rgb(70, 33, 5);
    color: grey;
    height: 25px;
}

::-webkit-input-placeholder {
    /* WebKit browsers */
    color: rgb(133, 133, 133);
}

:-moz-placeholder {
    /* Mozilla Firefox 4 to 18 */
    color: rgb(133, 133, 133);
}

::-moz-placeholder {
    /* Mozilla Firefox 19+ */
    color: rgb(133, 133, 133);
}

:-ms-input-placeholder {
    /* Internet Explorer 10+ */
    color: rgb(133, 133, 133);
}

.cloudraiser_logo {
    height: 150px; 
    width: auto; 
    margin-top: 20px;
}

.text_lab {
    color: white; 
    text-align: left; 
    padding-bottom: 10px; 
    padding-top: 10px; 
    font-size: smaller;
}