/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : 22 Nov 2020, 10:34:24
    Author     : Rishard
*/

@import url("colors.css");

* {
    box-sizing: border-box;
    padding:0px;
    margin: 0px;
    outline: none;
    border: none;
    font-family: 'Raleway', sans-serif;
}

.loginContainer{
    background-color: #262626;
    background-repeat: no-repeat;
    background-size: cover;
    position: fixed;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.loginWrapper{
    position: relative;
    width: 600px;
    height: 250px;
    display: flex;
    background-color:white;
    overflow: hidden;
    box-shadow: 0px 20px 30px rgba(0, 0, 0, 0.5);
}

.loginSection1, .loginSection2{
    display: flex;
    flex-direction: column;
}

.loginSection1{
    background-color: black;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 5px;
    overflow: hidden;
}

.loginSection1 a{
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.loginLogo{
    width: 100%;
    height: auto;
    padding: 20px;
}

.loginSection2{
    flex: 1.8;
}

.loginForm{
    width: 100%;
    height: 100%;
    padding: 10px 10px 10px 15px;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: left;
    backdrop-filter: blur(10px);
}

.loginTitle{
    color: #000000;
    font-size: 20px;
    font-weight: 700;
    line-height: 22px;
    padding: 10px 0px;
    text-align: center;
}

.loginElementCaption{
    color: #000000;
    width: 100%;
    font-size: 14px;
    line-height: 16px;
    padding-bottom: 5px;
}

.loginElementInput{
    background-color: white;
    width: 100%;
    font-size: 14px;
    line-height: 14px;
    min-height: 26px;
    margin-bottom: 5px;
	border: none;
	outline: none;
	padding: 10px;
	font-size: 13px;
    border: 1px solid rgba(0,0,0,0.3);
}

.loginElementInput:focus{
    box-shadow: 0px 0px 5px gray;
}

.loginElementInput::placeholder{
    color: gray;
    width: 100%;
    font-size: 12px;
    line-height: 14px;
    padding-left: 5px;
}

.loginBtnSubmit{
    background-color: royalblue;
    color: white;
    padding: 15px 0px;
    margin: 2px 0px;
}

.loginBtnSubmit:hover{
    background-color: blue;
}

.loginErrMsg{
    background-color:black; 
    color: red;
    text-align: center;
    font-size: 16px;  
    font-weight: 700;
    line-height: 50px;  
    width: 600px;
    margin-top: 10px;
    z-index: 2;
}


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

    .loginWrapper{
        flex-direction: column;
        height: 500px;
        max-width: 300px;
    }

    .loginSection1{
        flex: 1;
        display: flex;
        max-height: 300px;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 5px;
        overflow: hidden;
    }

    .loginLogo{
        width: 80%;
        height: auto;
        padding: 10px;
    }

    .loginSection2{
        flex: 2;
    }


    .loginForm{
        width: 100%;
        height: 100%;
    }

    .loginBtnSubmit{
        margin: 5px 0px;
    }

    .loginErrMsg{
        width: 300px;
    }
    

}
