body {
    /* background-color: #7395AE; */
    color: #FFFFFF;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    background-image: linear-gradient(to right, #265077, #7395AE);
}

h1 {
    font-family: 'Roboto Slab', serif;
    font-weight: 900;
}

.logo {
    font-size: 4rem;
}

.logo-div {
    width: 70%;
}

.login-form {
    width: 50%;
    margin: 0 auto;
    background-color: #5D5C61;
    border-radius: 14px;
    padding: 1rem;
    box-shadow: 3px 3px 8px rgba(0, 0, 0, 0.4);
    text-align: center;
}

.login-form input {
    width: 70%;
    margin: 0 auto;
}

.illustration {
    font-size: 80px;
    text-align: center;
}

.app-image-bg {
    height: 430px;
    position:absolute;
    z-index: -1;
}

.icon-bar{
    height: 64px;
}

.form-control {
    background: none;
    border: none;
    border-bottom: 1px solid #FFFFFF;
    border-radius: 0;
    box-shadow: none;
    outline: none;
    color: #FFFFFF;
}

.login-form .btn-primary {
    background: #557A95;
    box-shadow: none;
    text-shadow: none;
    outline: none;
    border: none;
    border-radius: 8px;
    text-align: center;
    width: 50%;

}

.form-control::placeholder {
    /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #F9F7F7;
    opacity: 1;
    /* Firefox */
}

.form-control:-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: #F9F7F7;
}

.form-control::-ms-input-placeholder {
    /* Microsoft Edge */
    color: #F9F7F7;
}

.login-form .btn-primary:hover,
.login-form .btn-primary:active {
    background: #27496D;
    outline: none;
}

.forgot {
    display: block;
    text-align: center;
    font-size: 12px;
    color: #F9F7F7;
    opacity: 0.9;
    text-decoration: none;
}

.forgot:hover,
.forgot:active {
    opacity: 1;
    text-decoration: none;
    color: #FFFFFF;
}

.page-footer {
    color: #F9F7F7;
    background-color: #B1A296;
}


/* User Page */
.illustration-nav {
    font-size: 30px;
}

.wm-navbar {
    background-color: #5D5C61;
}

.brand-logo {
    font-family: 'Roboto Slab', serif;
    font-weight: 900;
    font-size: 2rem;
}

.dropdown-menu {
    background-color: #5D5C61;
    border-radius: 0px 0px 4px 4px;
    border-top-color: #F9F7F7;
}

.dropdown-item {
    color: #F9F7F7;
    opacity: 0.7;
}

.send-message-container {
    padding: 10% 10%;
}

.send-message-form {
    text-align: center;
}

.send-message-form .btn-primary {
    background: #557A95;
    box-shadow: none;
    text-shadow: none;
    outline: none;
    border: none;
    border-radius: 8px;
    text-align: center;
    width: 50%;
    font-weight: bold;

}

.send-message-form .btn-primary:hover,
.send-message-form .btn-primary:active {
    background: #27496D;
    outline: none;
}

.message-table {
    color: #B1A296;
}

.message-table tbody,
td,
tfoot,
th,
thead,
tr {
    border-style: none;
}

.message-label {
    width: 20%;
    font-weight: bold;
}

/* Tablet Display the screen size is 962px wide or less */
@media screen and (max-width: 962px) {
    h1 {
        font-family: 'Roboto Slab', serif;
        font-weight: 400;
    }
    .icon-bar{
        height: 32px;
    }

    .logo {
        font-size: 3rem;
    }

    .illustration {
        font-size: 60px;
        text-align: center;
    }

    .login-form {
        width: 70%;
    }

    .illustration-nav {
        font-size: 20px;
    }

    .brand-logo {
        font-weight: 400;
        font-size: 1rem;
    }

    .message-label {
        width: 40%;
        font-weight: bold;
    }
}

/* Mobile Display the screen size is 601px wide or less */
@media screen and (max-width: 601px) {
    h1 {
        font-family: 'Roboto Slab', serif;
        font-weight: 400;
    }

    .logo {
        font-size: 2rem;
    }

    .illustration {
        font-size: 40px;
        text-align: center;
    }

    .app-img-div{
        display: none;
    }

    .icon-bar{
        height: 32px;
    }

    .login-form {
        width: 80%;
    }

    .illustration-nav {
        font-size: 20px;
    }

    .brand-logo {
        font-weight: 400;
        font-size: 1rem;
    }
    .send-message-container {
        padding: 20% 5%;
    }

    .send-message-form .btn-primary {
        width: 70%;
    
    }

    .message-label {
        width: 40%;
        font-weight: bold;
    }
}