@import url(https://fonts.googleapis.com/css?family=Roboto:300);

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-size: 14px;
    font-family: "Roboto", sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    height: 100vh;
    background: url('../Images/bg-default-body.jpg') center no-repeat;
    background-size: cover;
}


.login-page {
    width: 360px;
    padding: 15% 0 0;
    margin: auto;
}
.login-page::after{
    display: block;
    content: '';
    position: absolute;
    width: 150px;
    height: 150px;
    bottom: 30px;
    right: 40px;
    background: url('../Images/l4b.svg') center no-repeat;
    background-size: contain;
    transform: rotate(-25deg);
    opacity: .2;
    transition: opacity .3s;
}
.login-page:hover::after {
    opacity: .4;
}


.form {
    position: relative;
    z-index: 1;
    background: #fff;
    max-width: 360px;
    margin: 0 auto 100px;
    padding: 45px;
    text-align: center;
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.2), 0 5px 5px 0 rgba(0, 0, 0, 0.24);
}
.form input {
    outline: 0;
    background: #f2f2f2;
    width: 100%;
    border: 0;
    margin: 0 0 15px;
    padding: 15px;
}
.form button {
    text-transform: uppercase;
    outline: 0;
    background: #4CAF50;
    width: 100%;
    border: 0;
    padding: 15px;
    color: #fff;
    transition: background .3s;
    cursor: pointer;
}
.form button:hover,.form button:active,.form button:focus {
    background: #43A047;
}
.form .message {
    margin: 15px 0 0;
    color: #b3b3b3;
    font-size: 12px;
}
.form .message a {
    color: #4CAF50;
    text-decoration: none;
}
.form .register-form {
    display: none;
}


.container {
    position: relative;
    z-index: 1;
}
.container:before, .container:after {
    content: "";
    display: block;
    clear: both;
}
.container .info {
    position: relative;
    margin: 0 auto 35px;
    width:100%;
    text-align: center;
    color: #f00;
    font-size: 14px;
}


.forget-pw{
    color: #000;
    display: block;
    margin: .5em auto -1em;
}

.forget-pw a, .forget-pw a:visited, .forget-pw a:hover {
    color: #000;
}

.copyright{
    position: absolute;
    color: #fff;
    bottom: 10px;
    left: 10px;
}