﻿/* Vertical and horizontal aligned box with full screen bg */
.full-screen-wrapper {
    background-size: cover !important;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
}

    .full-screen-wrapper .content-box {
        background: #ffffff;
        margin: 0 auto;
        max-width: calc(100% - 100px);
        padding: 25px 25px 45px 25px;
        box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
        border-top-left-radius: 4px;
        border-top-right-radius: 4px;
    }


