    html,
    body {
        width: 100%;
        height: 100%;
        margin: 0;
        padding: 0;
        background-image: url('images/bg.jpg');
        background-size: 100% 100%;
        background-repeat: no-repeat;
    }
    
    .container {
        height: 100%;
        display: flex;
        display: -webkit-flex;
        justify-content: center;
        align-items: center;
    }
    
    .box {
        width: 100%;
        background-color: rgba(255, 255, 255, 0.8);
        text-align: center;
        border-radius: 10px;
        -webkit-box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.2);
        -moz-box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.2);
        box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.2);
        padding: 20px;
    }
    
    .logo img {
        max-height: 100px;
        margin-bottom: 20px;
    }
    
    .data p {
        margin-bottom: 0;
        font-weight: bold;
        color: #333;
    }
    
    .data p:last-child {
        margin-bottom: 20px;
    }
    
    .data p span {
        color: #57453f;
    }
    
    .title {
        color: #333;
        font-weight: bold;
    }
    
    .form {
        align-self: center;
    }
    
    .links {
        text-align: center;
        font-size: 14px;
    }
    
    .links a {
        margin: 0 10px;
        text-decoration: none !important;
        color: #57453f;
    }
    
    .links a:hover {
        color: #463733;
    }
    
    .btn-color {
        background: #57453f;
        border-color: #57453f;
        color: #fff
    }
    
    .btn-color:hover {
        background: #463733;
        border-color: #463733;
        color: #fff;
    }
    
    .loader {
        text-align: center;
        display: none;
    }
    
    .loader img {
        max-height: 50px;
    }

    .box-left {
        display: flex;        
        height: 100%;        
        justify-content: center;
        align-items: center;
    }
    
    .box-left-content {
        flex: 1;
    }

    .icon {
        max-width: 36px;
        height: auto;
    }

    .icon:first-child {
        margin-right: 15px;
    }
    
    @media (max-width: 767.98px) {
        body {
            height: auto;
        }
        .box {
            height: 100%;
        }
    }