.loading
{
    display: table;
    margin-left: auto;
    margin-right: auto;
}

.form__img 
{
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
    background-color: rgba(210,201,255,0.04);
    margin-bottom: 20px;
    -webkit-border-radius: 6px;
    border-radius: 6px;
    overflow: hidden;
}

.form__img input 
{
    position: absolute;
    left: -9999px;
    opacity: 0;
}
.form__img label 
{
    position: absolute;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 2;
    cursor: pointer;
    margin: 0;
    font-weight: normal;
    letter-spacing: 0.4px;
    font-size: 15px;
    color: #000000;
    -webkit-transition: 0.4s ease;
    -moz-transition: 0.4s ease;
    transition: 0.4s ease;
}

.form__img label:hover 
{
    color: #481515;
}

.form__img img 
{
    position: absolute;
    z-index: 1;
    top: -100px;
    right: -100px;
    bottom: -100px;
    left: -100px;
    margin: auto;
    width: 100%;
}

@media (min-width: 768px) 
{
    .form 
    {
        padding: 30px 20px;
    }

    .form__cover 
    {
        -ms-flex: 0 0 290px;
        flex: 0 0 290px;
        max-width: 290px;
    }

    .form__content 
    {
        -ms-flex: 0 0 calc(100% - 290px);
        flex: 0 0 calc(100% - 290px);
        max-width: 100%;
    }
}

@media (min-width: 992px) 
{
    .form 
    {
        padding: 30px;
    }
}