body {
    margin: 0;
    padding: 0;
    background: url("ts_back.jpg") top center no-repeat;
    background-size: cover;
    min-height: 100%;
    font-family: 'Satoshi', sans-serif;
}

.form-reply {
    display: none;
}

.main {
    display: flex;
    align-items: center;
    height: 100vh;
    width: 90%;
    margin: 0px auto;
    padding: 0px;
}

.dleft, .dcenter, .dright {
    flex-grow: 1;
    width: 33.33%;
    /*border: 1px solid #FF0000;*/
}

.dcenter {
    text-align: center;
}

.title {
    font-family: 'Bebas Neue', sans-serif;
    color: #FAA411;
    font-size: 70px;
    width: 90%;
    line-height: 78px;
}

.form-title {
    font-family: 'Bebas Neue', sans-serif;
    color: #FAA411;
    font-size: 40px;
    line-height: 48px;
}

.form-input-group {
    margin-top: 20px;
}

.subtitle {
    margin: 30px 0px;
    font-family: 'Satoshi', sans-serif;
    color: #FFF;
    font-size: 40px;
    width: 90%;
    line-height: 48px;
    font-weight: 600;
}

div.dcenter img {
    width: 100%;
}

div.dleft button {
    font-family: 'Satoshi', sans-serif;
    color: #000;
    font-size: 18px;
    background: #FAA411;
    border-radius: 3px;
    border: 0;
    padding: 10px 35px;
    margin-top: 10px;
    box-shadow: 5px 5px 10px #191919;
}

div.dleft button:hover {
    background: #000;
    color: #FFF;
    cursor: pointer;
}

div.form-input-group button {
    font-family: 'Satoshi', sans-serif;
    color: #000;
    font-size: 18px;
    background: #FAA411;
    border-radius: 3px;
    border: 0;
    padding: 10px 35px;
    margin-top: 10px;
    box-shadow: 5px 5px 10px #191919;
    width: 100%;
}

div.form-input-group button:hover {
    background: #000;
    color: #FFF;
    cursor: pointer;
}

.form {
    background: #FFF;
    border-radius: 3px;
    width: 80%;
    margin: 0 auto;
}

.form-content {
    width: 80%;
    margin: 0 auto;
    padding: 30px 0px;
}

label {
    font-size: 16px;
    color: #666;
}

input {
    margin-top: 10px;
    display: block;
    width: calc(100% - 30px);
    border: 0;
    border-radius: 3px;
    background: #000;
    color: #FFF;
    padding: 15px;
    font-family: 'Satoshi', sans-serif;
}

@media only screen and (max-width: 767px) {
    .main {
        flex-wrap: wrap;
    }

    .dleft, .dcenter, .dright {
        flex-grow: 1;
        width: 100%;
    }

    .title {
        font-size: 50px;
        line-height: 58px;
        margin-top: 40px;
    }

    .subtitle {
        font-size: 26px;
        line-height: 34px;
    }

    .dcenter {
        margin: 50px 0px;
    }

    .form {
        margin-top: 30px;
        margin-bottom: 50px;
        width: 100%;
    }

    .form-content {
        width: 100%;
    }
}