.login-page, .register-page {
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: url(../../img/bgLogin.png);
    background-repeat: no-repeat;
    background-size: cover;
}

.login-form {
    margin: 0 auto;
    background: url(../../img/bgLogin.jpg)no-repeat 0px 0px;
    background-size: cover;
    background-position: center;
    padding: 30px 33px 20px;
    padding-bottom: 40px;
    border-top: 6px solid #00c3ff;
    box-shadow: 0px 35px 44px -22px rgba(0, 0, 0, 0.72);
}

h1, h6 {
    text-align: center;
    font-size: 34px;
    font-weight: bold;
    margin-top: 24px;
    margin-bottom: 26px;
    color: #3f8ba2;
}
h6 {font-size: 20px;margin-top: -25px;color: #FFF;}
form {
    margin: 0 auto;
    min-height: 300px;
}

form p {
    font-size: 15px;
    margin-top: 44px;
    padding: 0.3px;
    color: #000;
}

.icon {
    color: #77787d;
    font-size: 26px;
    padding-left: 12px;
    position: absolute;
    margin-top: 4px;
}

.login-form form input[type="text"], input[type="password"]{
    outline: none;
    font-size: 1.2em;
    color: #ed6823;
    font-weight: bold;
    padding: 10px 10px 10px 34px;
    margin: 0 auto;
    width: 95%;
    border: none;
    border-bottom: 1px solid #DCCDCF;
    border-radius: 4px;
    display: block;
    background-color: rgba(255,255,255,0);
}

.login-form form input[type="text"]::placeholder, input[type="password"]::placeholder{
    color: #ed6823;
}

button[type="submit"] {
    width: 290px;
    outline: none;
    display: block;
    margin: 0 auto;
    margin-top: 138px;
    padding: 10px 17px;
    font-size: 20px;
    font-weight: bold;
    text-transform: uppercase;
    background: #00c3ff;
    border: none;
    color: #fff;
    cursor: pointer;
    transition: 0.3s all;
    position: absolute;
}

button[type="submit"]:hover{
    background: #0080b3;
    transition: 0.3s all;
}

.login-form a {
    display: block;
    font-size: 15px;
    color: #fff;
    text-align: center;
    margin-top: 31px;
    transition: 0.3s all;
}

.login-form a:hover {
    color: #00c3ff;
    transition: 0.3s all;
}