﻿.formBg
{
    background-image:url(../../img/login/loginBg.jpg);
    background-position:center;
    background-size:cover;
    background-repeat:no-repeat;
    position:relative;
    height:100vh;
    width:100%;
}
    .formBg:after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: #13AED2;
        background: -moz-linear-gradient(45deg, #13AED2 0%, #13AED2 38%, #0973BA 100%);
        background: -webkit-linear-gradient(45deg, #13AED2 0%, #13AED2 38%, #0973BA 100%);
        background: linear-gradient(45deg, rgba(19, 174, 210,0.6) 0%, rgba(37, 148, 69,0.6) 38%, rgba(9, 115, 186,0.8) 100%);
    }
.formMainWrapper{
    background:rgba(255,255,255,0.8);
    padding:30px;
    border-radius:10px;
    position:relative;
    z-index:2;
}
.formInputsWrapper label {
    display: block;
    text-transform: uppercase;
    margin-bottom: 5px;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Quicksand', sans-serif;
}
.formInputsWrapper input {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 5px;
    font-family: 'Quicksand', sans-serif;
    font-weight: 500;
}
.formInputsWrapper input:focus{
    outline:none;
}
    .formInputsWrapper input::placeholder {
        font-weight:300;
    }
.loginTitle {
    
    text-align:center;
}
    .loginTitle h2 {
        font-size: 25px;
        font-weight: 600;
        text-transform: uppercase;
        font-family: 'Quicksand', sans-serif;
    }
.mainLogo h4 {
    font-weight: 600;
    text-transform: uppercase;
    font-family: 'Quicksand', sans-serif;
    margin-bottom: 0px;
    font-size: 30px;
}
.mainLogo img{
    position:relative;
    top:-2px;
}
.loginBtn a {
    display: inline-block;
    width: 100%;
    font-family: 'Quicksand', sans-serif;
    border-radius:8px;
    font-weight:600;
    text-transform:uppercase;
}
.formMainPlaceholder{
    display:flex;
    justify-content:center;
    align-items:center;
    height:100vh;

}