
.footer {
    height:30px;
    margin: 0;
    clear: both;
    width:100%;
    position: relative;
}

.imgContainer {
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 20px rgba(0, 0, 0, 0.4);
}

.loginPanel {
    padding: 15px 30px;
    border-radius: 7px;
    box-shadow: 0 20px 20px rgba(0, 0, 0, 0.2);
}

.mainContainer {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 90%;
    padding: 10px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.panelContainer {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    min-width: 500px;
    width: 90%;
    padding: 10px;
}

.vl {
    border-left: 2px solid #8a8888;
    margin: 0 50px;
    height: 200px;
}

body{
    height: 100%;
}

button, label {
    background: #e68b63;
    color: #000000;
}

button:hover, label:hover {
    background: #67300f;
    color: #ffffff;
    opacity: 0.7;
    cursor: pointer;
    box-shadow: 0 50px 50px rgba(0, 0, 0, 0.2);
}

button, input, label, textarea {
    display: block;
    border: 1px solid #ccc;
    border-radius: 3px;
    margin-top: 10px;
    line-height: 28px;
    height: 40px;
    padding: 0 10px;
    width: 100%;
    max-width: 200px;
    box-sizing: border-box;
}

html{
    font-family: BehdadWeb, Tahoma;
    height: 100%;
}

img {
    height: 200px;
    width: 300px;
}

