﻿
.login-page {
    height: 100vh;
    width: 100%;
    align-items: center;
    display: flex;
    padding-left:10rem;
    justify-content: center;
    background-image:url('../../img/login.png');
    background-size: cover;
    background-repeat:no-repeat;
}
    .login-page img {
        width: 220px;
        height: auto;
        margin-right: 3rem;
    }

@media only screen and (max-width: 600px) {
    .login-page{
       flex-direction: column;
       padding:0;
    }
    .login-page img{
        margin:10px; auto;
    }
    .form{
        width:100%;
        margin: 0 auto;
    }
}

.form {
    filter: drop-shadow(0 0 2px #000000);
    border-radius: 5px;
    width: 360px;
    /*height: 300px;*/
    background-color: #ffffff;
    padding: 2rem;
    text-align: center;
}

    .form input {
        outline: 0;
        background-color: lightgrey;
        border-radius: 0.5rem;
        width: 100%;
        border: 0;
        margin: 15px 0;
        padding: 15px;
        font-size: 0.8rem;
    }

        .form input:focus {
            box-shadow: 0 0 5px 0 #164a7a;
        }

span {
    color: red;
    margin: 5px 0;
    font-size: 1rem;
}

.form button {
    outline: 0;
    background: #164a7a;
    width: 100%;
    border: 0;
    margin-top: 10px;
    border-radius: 0.5rem;
    padding: 1rem;
    color: #ffffff;
    font-size: 15px;
    -webkit-transition: all 0.3 ease;
    transition: all 0.4s ease-in-out;
    cursor: pointer;
}

    .form button:hover,
    .form button:active,
    .form button:focus {
        background: black;
        color: #ffffff;
    }

.message {
    margin: 15px 0;
    text-align: center;
}

.form .message a {
    font-size: 14px;
    color: #6a62d2;
    text-decoration: none;
}


