/*
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.
*/
.login-outer-wrap {
    display:flex;
    flex-wrap: wrap;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background: #fff;
    align-items: center;
    justify-content: center;
    place-content: center;
    background: url('bg-big-logo.png') no-repeat center center / contain #fff;
}

.img-responsive {
    max-width: 100%;
    height: auto !important;
}

.col-sm-12 {
    width: 100%;
    padding: 25px 0px;
    text-align: center;
}

.form-group {
    display: flex;
    max-width: 320px;
    margin:0 auto;
    border-radius: 2px;
    border: 1px solid #ccc;
    background: #fff;
    box-shadow: 2px 6px 2px rgba(0,0,0,0.3);
}

.form-group input {
    padding: 5px;
    min-width: 200px;
    border: 0px;
    box-shadow: none;
    outline: 0px !important;
    color: #888;
    font-size:16px;
    text-indent: 6px;
    font-weight: 400;
    width: 100%;
}

button {
    width: 50%;
    max-width: 50px;
    border: 0px;
    box-shadow: none;
    border-radius: 2px;
    height: 40px;
    background: url('arrow.png') no-repeat center center / 20px 20px #3e3e3e;
    transition: all 0.3s linear;
}

button:hover {
    background: url('arrow.png') no-repeat center center / 20px 20px #aaa;
}


.hidden {
    display: none;
}

.error-div {
    display: none;
    color: red;
    margin: 0px;
    text-align: center;
}

