
body {
    color: #212121;
    font-family: sans-serif;
}

body * {
    box-sizing: border-box;
}

.h100 {
    height: 100%;
    background-image: url(../img/bg1.jpg);
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    overflow-y: scroll;
}

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

.header {
    padding: 15px 0;
    /*background-color: rgba( 255, 255, 255, 0.7 );*/
    text-align: center;
}

.header-logo {
    display: inline-block;
    width: 25%;
}

.wrapper  {
    width: 970px;
    margin: 0 auto;
}

.content {
    flex-grow: 1;
    display: flex;
    flex-direction: row;
    align-items: center;
    text-align: center;
}

.login-form {
    width: 440px;
    display: inline-block;
    text-align: left;
    background-color: rgba( 255, 255, 255, 0.7 );
    border-radius: 20px;
    padding: 20px;
}

.input-container {
    position: relative;
    margin-bottom: 15px;
}

.input-label {
    display: inline-block;
    width: 100%;
    margin: 0;
    padding: 0;
    margin-bottom: 5px;
    font-size: 20px;
    font-weight: 500;
}

.input {
    display: inline-block;
    width: 100%;
    line-height: 1;
    font-size: 20px;
    font-weight: 500;
    border-radius: 10px;
    padding: 12px 17px;
    background-color: #fff;
    border: 1px solid #777;
}

.input-error {
    background-color: rgba(255, 0, 0, .3);
}

.input:focus  {
    outline: none;
}

.password-error {
    display: none;
    font-size: 20px;
    padding-bottom: 15px;
    color: red;
}

.btn {
    border: none;
    background: linear-gradient( to right, #758055, #4e5545 );
    font-size: 20px;
    display: inline-block;
    width: 100%;
    border-radius: 10px;
    text-align: center;
    line-height: 1;
    padding: 15px;
    text-transform: uppercase;
    color: #fff;
}

.btn:hover {
    background: #758055;
    cursor: pointer;
}

.btn:focus {
    outline: none;
}

.login-title {
    font-size: 48px;
    text-align: center;
    font-weight: bold;
    margin-bottom: 15px;
}

.login-title span {
    color: #757474;
}

.login-subTitle1 {
    font-size: 27px;
    text-align: center;
    text-transform: uppercase;
    font-style: italic;
    font-weight: bold;
    margin-bottom: 10px;
}

.login-subTitle2 {
    margin-bottom: 20px;
    font-size: 20px;
    text-align: center;
    text-transform: uppercase;
    font-weight: 300;
}

.login-subTitle2 b {
    font-weight: 900;
}
















@media screen and (max-width: 768px) {

    .wrapper {
        width: 100%;
    }
    .header-logo {
        width: 50%;
    }
    .login-form {
        width: 94%;
        padding: 10px;
    }
    .login-title {
        font-size: 20px;
        padding: 0 10px;
    }
    .login-subTitle1 {
        font-size: 20px;
        padding: 0 10px;
    }
    .login-subTitle2 {
        font-size: 16px;
        padding: 0 10px;
    }
}