#containerShowroom {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, .9);
    z-index: 999999;
    display: flex;
    flex-wrap: nowrap;
    width: 100%;
    align-items: flex-start;
    justify-content: center
}

.layerShowroom {
    max-width: 1200px;
    background: #fff;
    padding: 0;
    margin-top: 5%;
    border-radius: 10px;
    text-align: center;
    width: 90%
}

.layerShowroom #layerLogo {
    position: relative
}

.layerShowroom #layerLogo .logo {
    position: absolute;
    right: 0;
    top: 0;
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-end;
    align-items: center;
    bottom: 0;
    height: 100%;
    width: 100%
}

.layerShowroom #layerLogo .logo img {
    height: auto;
    max-width: 210px;
    margin-right: 110px
}

.layerShowroom #layerLogin {
    padding: 50px
}

.layerShowroom .areaContent h1 {
    text-transform: uppercase;
    font-weight: 100;
    letter-spacing: 6px;
    margin-bottom: 5px
}

.layerShowroom .areaContent h2 {
    text-transform: uppercase;
    font-size: 1.6rem;
    letter-spacing: 4px;
    margin-bottom: 30px
}

.layerShowroom input {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    border: 1px solid #ccc;
    font-size: 100%;
    padding: 0 5px;
    padding: 10px 20px
}

.layerShowroom .button {
    border: none;
    font-family: fontawesome, futura-pt;
    font-weight: 300;
    position: relative;
    right: 0;
    text-transform: uppercase;
    line-height: 1.4;
    background: #000;
    color: #fff;
    cursor: pointer;
    margin-top: 25px
}

.layerShowroom .button:hover {
    background: rgba(0, 0, 0, .5);
    color: #fff;
    -webkit-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    -moz-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out
}

@media only screen and (max-width:800px) {
    .layerShowroom #layerLogo .logo img {
        max-width: 150px
    }
    .layerShowroom .areaContent h1 {
        font-size: 1.8rem
    }
    .layerShowroom .areaContent h2 {
        font-size: 1.4rem
    }
}