body{
    background-image: url("../img/login_page_background.jpg");
    height: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    font-family: "Roboto", "Lucida Grande", "DejaVu Sans", "Bitstream Vera Sans", Verdana, Arial, sans-serif;
}
.card {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
    transition: 0.3s;
    /* border-radius: 50px; */
    min-height: 22em;
    width: 25em;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    background-color: #FFFFFF;
}
.col-sm-3.header_logo {
    text-align: center;
}
.card-header {
    background-color: #fc641c;
    /* border-top-left-radius: 50px; */
    /* border-top-right-radius: 50px; */
    height: 3em;
    padding-top: 0.5em;
    padding-bottom: 0.5em;
}
.card:hover {
    /*
    box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2);
    border-radius: 50px;
    */
}
.container {
    padding: 2px 16px;
}
.card-container {
    display: flex;
    flex-direction: column;
    vertical-align: middle;
    margin-top: 10%;
    margin-bottom: auto;
}
h1.index-card-h1 {
    font-size: 3.75rem;
    margin: 0;
    line-height: 1.1;
    font-weight: 700;
}
.row.th-card-row {
    display: block;
    text-align: left;
    margin-left: auto;
    margin-right: auto;
}
p.index-card-text {
    letter-spacing: 0px;
    font-size: 1.3rem;
    font-weight: 500;
    text-transform: none;
    margin: 27px 0 0;
}
a.index-btn.btn-login {
    border-style: none;
    background-image: none;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 500;
    margin: 34px auto 0 0;
    padding: 20px 45px 20px 45px;
    background-color: #f67a37;
    border-radius: 50px;
    color: #FFFFFF;
    transition: 0.5s;;
}
a.index-btn.btn-login:hover {
    background-color: #000000;
}
.u-btn {
    display: table;
    cursor: pointer;
    color: inherit;
    font-size: inherit;
    font-family: inherit;
    line-height: inherit;
    letter-spacing: inherit;
    text-transform: inherit;
    font-style: inherit;
    font-weight: inherit;
    text-decoration: none;
    border: 0 none transparent;
    outline-width: 0;
    background-color: transparent;
    margin: 0;
    -webkit-text-decoration-skip: objects;
    font-style: initial;
    white-space: nowrap;
    -webkit-user-select: none;
        -ms-user-select: none;
            user-select: none;
    vertical-align: middle;
    text-align: center;
    padding: 10px 30px;
    border-radius: 0;
    align-self: flex-start;
}
.u-btn:focus, .u-btn:active:focus, .u-btn.active:focus {
    outline: thin dotted;
    outline: 5px auto -webkit-focus-ring-color;
    outline-offset: -2px;
    background-color: #000000;
}
.u-btn:hover, .u-btn:focus {
    text-decoration: none;
    background-color: #000000;
}
div#login-form {
    margin-top: 4em;
    margin-left: auto;
    margin-right: auto;
}
form-row {
    margin-bottom: 1.5em;
}
.form-row label {
    display: block;
    line-height: 2em;
    font-size: 14px;
    font-family: "Roboto", "Lucida Grande", "DejaVu Sans", "Bitstream Vera Sans", Verdana, Arial, sans-serif;
    color: var(--body-fg);
    margin-bottom: 0px;
}
.form-row input {
    height: 2em;
    width: 20em;
    margin-bottom: 1em;
    display: block;
    line-height: 2em;
    font-size: 14px;
    font-family: "Roboto", "Lucida Grande", "DejaVu Sans", "Bitstream Vera Sans", Verdana, Arial, sans-serif;
    color: var(--body-fg);
}
.submit-row input[type=submit] {
    background-color: #269049d0;
    border: 1px solid #269049d0;
    color: #FFFFFF;
    padding: 10px 25px 10px 25px;
    transition: 0.5s;
    cursor: pointer;
}
.submit-row input[type=submit]:hover, .submit-row input[type=submit]:active {
    background-color: #26904A;
    border: 1px solid #26904A;
    color: #FFFFFF;
    transition: 0.5s;
}
@media only screen and (max-width: 760px) {
    .card {
        box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
        transition: 0.3s;
        min-height: 25em;
        width: 100%;
        display: flex;
        flex-direction: column;
    }
    div#login-form {
        margin-top: 4em;
        margin-left: 1em;
        margin-right: 1em;
    }
    body {
        background-size: auto;
    }
    .row.th-card-row {
        margin-top: 25%;
    }
}