@font-face {
    font-family: ProximaNova;
    src: url(../fonts/PROXIMANOVA-REGULAR.TTF);
    font-weight: normal;
}
@font-face {
    font-family: Oswald;
    src: url(../fonts/Oswald-Regular.ttf);
    font-weight: normal;
}
@font-face {
    font-family: Oswald;
    src: url(../fonts/Oswald-Light.ttf);
    font-weight: 300;
}
html,
body {
    border: none;
    margin: 0;
    padding: 0;
}
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
address,
big,
cite,
code,
em,
font,
img,
small,
strike,
sub,
sup,
li,
ol,
ul,
fieldset,
form,
label,
legend,
button,
caption
{
    border: none;
    font-size: inherit;
    line-height: inherit;
    margin: 0;
    padding: 0;
    text-align: inherit;
}
body {
    background: #fafafa;
    font-family: ProximaNova;
    font-size: 24px;
    color: #2b2b2b;
}
a{
    color: #2b2b2b;
    text-decoration: none;
    font-size: 20px;
}
a:hover{
    color: #ff2400;
}
*,
*::before,
*::after {
    box-sizing: inherit;
    -webkit-font-smoothing: antialiased;
    word-wrap: break-word;
}

.container{
    width: 1200px;
    margin: 0 auto;
    padding-top: 70px;
}
.container > div{
    margin-bottom: 40px;
    text-align: center;
}
.logo img{
    width: 152px;
}
.heading-title{
    font-family: Oswald;
    font-size: 60px;
    text-transform: uppercase;
}
.form-wrap{
    background-color: #fff;
    border-radius: 50px;
    width: 855px;
    padding: 50px 55px;
    border: 1px solid #e5e5e5;
    margin: 0 auto;

}
form{
    display: flex;
    justify-content: center;
    flex-direction: column;
}
input{
    border-radius: 30px;
    background-color: #fafafa;
    padding: 20px 28px;
    color: #2b2b2b;
    border: 1px solid #e5e5e5;
    display: inline;
    font-size: 17px;
}
.form-group{
    display: flex;
    margin-bottom: 40px;
    flex-direction: column;
    width: 100%;
}
label{
    text-align: left;
    padding-left: 30px;
    font-size: 15px;
    color: #ff2400;
    margin-top: 5px;
}
input[type='submit']{
    color:#fff;
    background-color: #ff2400;
    padding: 20px 75px;
    display: block;
    margin: 0 auto;
    max-width: 270px;
    cursor: pointer;
}
.footer{
    display: flex;
    justify-content: center;
}
.footer-column *{
    font-family: Oswald;
    font-weight: 300;
    font-size: 15px;
}
.footer-column span{
    text-align: left;
    display: block;
    margin-right: 30px;
}
.success{
    margin-top: 10px;
    color: #0f913b;
}