.flex-main-container {
    width: 100% !important;
    height: auto;
    display: grid;
    place-content: normal;
    background: url(images/download-box-bg.png);
    background-size: cover;
}

.flex-container {
    display: flex;
    flex-direction: row;
    font-size: 1.4rem;
    text-align: center;
    height: 165px;
}

.flex-item-left {
    flex: 50%;
    padding-top: 1.5rem;
    padding-left: 1.5rem;
}

.flex-item-right {
    flex: 50%;
    padding: 1.5rem 1.5rem 1.5rem 1.5rem;
}

@media (max-width: 800px) {
    .flex-container {
        flex-direction: column;
    }
}

.form-control {
    height: 40px;
    font-size: 15px;
    font-weight: 300;
    color: #606060;
    border-color: #ebeef6;
    box-shadow: none;
    display: block;
    width: 100%;
    padding: 6px 12px;
    line-height: 1.42857143;
    background-color: #fff;
    background-image: none;
    border: 1px solid #ccc;
    border-radius: 4px;
    -webkit-box-shadow: inset 0 1px 1px rgb(0 0 0 / 8%);
    box-shadow: inset 0 1px 1px rgb(0 0 0 / 8%);
    -webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
    -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
    margin: 0;
}

.form-control-btn {
    margin-top: 10px;
    background-color: transparent;
    border: 1px solid #e1b44b;
    display: block;
    width: 100%;
    height: 40px;
    padding: 6px 12px;
    font-size: 18px;
    line-height: 1.42857143;
    color: #000;
    background-image: none;
    border-radius: 4px;
    -webkit-box-shadow: inset 0 1px 1px rgb(0 0 0 / 8%);
    box-shadow: inset 0 1px 1px rgb(0 0 0 / 8%);
    -webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
    -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
    padding: 0 !important;
}

.custom-btn {
    background-color: #E1B54C;
    border: none;
    color: white;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    text-decoration: none
}

#pageLoader {
    background-color: rgba(255, 255, 255, 0.8);
    display: grid;
    place-content: center;
    height: 100%;
    left: 0;
    position: fixed;
    text-align: center;
    top: 0;
    width: 100%;
    z-index: 99999;
}

.dform {
    display: flex;
    flex-wrap: wrap;
    margin-top: 15px;
}

.dform>input {
    flex: 1 1 10ch;
    margin: .5rem
}

.dform>input[type="email"] {
    flex: 3 1 30ch;
}

input {
    border: none;
    background: hsl(0, 0%, 93%);
    border-radius: .25rem;
    padding: 0.55rem 1rem;
}

input[type="submit"] {
    background: #CB0E20;
    color: white;
}