.form-group {
    display: flex;
    display: -webkit-flex;
}

.clear {
    clear: both;
}

h2 {
    font-weight: 600;
    margin: 0 0 0.5em 0;
}

body {
    font-size: 14px;
    line-height: 1.8;
    color: #fff;
    background-image: url("../images/wizard.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 0 0;
    font-weight: 600;
    font-family: "Roboto", "Helvetica Neue", Arial, sans-serif;
    margin: 0px;
}

.block {
    display: inline-block;
    width: 100%;
    margin-top: 3em;
}

.block+.block {
    margin-bottom: 3em;
}

.form {
    padding: 30px 40px 30px 40px;
    background: rgba(11, 13, 24, 0.6);
    margin: 0 auto 0 auto;
    border-radius: 10px;
    -moz-border-radius: 10px;
    -webkit-border-radius: 10px;
    -o-border-radius: 10px;
    -ms-border-radius: 10px;
}

input {
    border: none;
    background: #fff;
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    -o-border-radius: 5px;
    -ms-border-radius: 5px;
    box-sizing: border-box;
    width: 100%;
    padding: 13px 20px;
    font-size: 16px;
    font-weight: 600;
    color: #222;
    display: block;
    font-family: Poppins;
    position: relative;
    z-index: 9;
}

input::-webkit-input-placeholder {
    color: #999;
}

input::-moz-placeholder {
    color: #999;
}

input:-ms-input-placeholder {
    color: #999;
}

input:-moz-placeholder {
    color: #999;
}

.submit {
    background: #f8ba0f;
    color: #fff;
    font-size: 14px;
    margin-top: 2em;
    padding: 15px 20px;
    cursor: pointer;
    margin-left: 0.5em;
}

.submit:hover {
    background-color: #ce9906;
}

#login-form .submit {
    background: #28a745;
}

#login-form .submit:hover {
    background: #218838;
}

label {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 2px;
    display: block;
    white-space: nowrap;
}

.form-group {
    align-items: center;
    -moz-align-items: center;
    -webkit-align-items: center;
    -o-align-items: center;
    -ms-align-items: center;
    justify-content: space-between;
    -moz-justify-content: space-between;
    -webkit-justify-content: space-between;
    -o-justify-content: space-between;
    -ms-justify-content: space-between;
}

.form-row {
    margin: 0.5em;
}

@media screen and (max-width: 768px) {
    .container {
        width: calc(100% - 30px);
        max-width: 100%;
    }

    .form-group {
        flex-direction: column;
        -moz-flex-direction: column;
        -webkit-flex-direction: column;
        -o-flex-direction: column;
        -ms-flex-direction: column;
    }

    .col-sm-6 {
        width: 80%;
        padding: 0;
    }

    .form-row {
        width: 80%;
    }

    .form-submit {
        width: 80%;
    }

    .form-submit .submit {
        margin-left: 0;
    }
}

@media screen and (max-width: 480px) {}