body,
main,
form,
input,
label,
select,
option {
    direction: rtl;
    box-sizing: border-box;
    font-family: 'Assistant', sans-serif;
}

main {
    margin: 0 auto;
    width: 900px;
    height: 460px;
    text-align: center;
    color: #020202;
}

h1 {
    font-size: 2.5em;
    /*3*/
    color: #105c8a;
    font-family: 'Assistant', sans-serif;
    letter-spacing: 1px;
    padding: 0px;
    margin: 20px 0px 10px 0px;
}

h1 b { 
 font-weight: 800;   
}

p {
    font-size: 2em;
    /*1.5*/
    font-family: 'Assistant', sans-serif;
    padding: 0px;
    margin: 0px;
    margin-bottom: 10px;
}

form {
    width: 630px;
    margin: 0 auto;
    color: #020202;
}

label {
    width: 49%;
    margin: .75em 0 0 .5%;
    display: inline-block;
}

label[for="updates"] {
    width: 100%;
}

label[for="submit"] {
    display: block;
    margin: 0 auto;
}

input,
select {
    width: 100%;
    padding: .75em;
    border-radius: 2px;
    border: 2px solid #808080;
}

input:focus {
    outline: 2px solid #f3934d;
}

label[for="updates"] {
    font-size: .8em;
    margin: 1em 0 2em 0;
    cursor: pointer;
    text-align: right;
}

#updates {
    width: auto;
    margin-left: .5em;
    vertical-align: middle;
    cursor: pointer;
}

input[type="submit"] {
    background-color: #105c8a;
    color: #fff;
    font-size: 1.1em;
    font-weight: 500;
    border: none;
    border-bottom: 3px solid #105c8a;
    cursor: pointer;
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    border-radius: 26px;
    -moz-border-radius: 26px;
    -webkit-border-radius: 26px;
}

input[type="text"].error,
input[type="tel"].error {
    background-color: #105c8a !important;
    border-color: 105c8a !important;
}

input[type="text"].error::-webkit-input-placeholder,
input[type="tel"].error::-webkit-input-placeholder {
    /* Chrome/Opera/Safari */
    color: #fff !important;
}

input[type="text"].error::-moz-placeholder,
input[type="tel"].error::-moz-placeholder {
    /* Firefox 19+ */
    color: #fff !important;
}

input[type="text"].error:-ms-input-placeholder,
input[type="tel"].error:-ms-input-placeholder {
    /* IE 10+ */
    color: #fff !important;
}

input[type="text"].error:-moz-placeholder,
input[type="tel"].error:-moz-placeholder {
    /* Firefox 18- */
    color: #fff !important;
}

#Thanks {
    display: none;
}

@media all and (max-width: 900px) {
    main {
        width: 630px;
        height: 460px;
    }
}

@media all and (max-width: 630px) {
    main {
        width: 300px;
        /*320*/
        height: 460px;
    }
    form {
        width: 300px;
        /*320*/
    }
    label {
        width: 100%;
        margin: .75em 0 0 0;
    }
}