.form-control {
    border: 1px solid #000;
    background: #fff;
    font-size: 14px;
    height: 35px;
    padding-left: 10px;
    line-height: normal;
    color: #000000;
    border-radius: 0;
    font-family: Avenir-Medium;
    letter-spacing: .7px;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
}

select.form-control {
    background: #fff;
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
}

.form-control:focus {
    box-shadow: none;
    outline: none;
}

.form-group ~ .form-group {
    margin-top: 10px;
}

.form-control.block {
    width: 100%;
}

.submit-button {
    background: none;
    color: #000000;
    border: none;
    padding: 0;
    margin: 0;
    font-family: Avenir-Heavy;
    font-size: 13px;
    border-bottom: 2px solid #000;
    line-height: normal;
    transition: all ease-in .3s;
}

.submit-button:hover {
    color: #4ca5e5;
    border-color: #4ca5e5;
}

.submit-button:focus {
    border: none;
    box-shadow: none;
    outline: none;
}

.forgot-password {
    margin: 19px 0 9px;
    margin-bottom: 45px;
}

.forgot-password-link {
    font-size: 9px;
    text-decoration: underline;
    color: #000;
}

::-webkit-input-placeholder { /* Chrome/Opera/Safari */
    color: #000000;
}

::-moz-placeholder { /* Firefox 19+ */
    color: #000000;
}

:-ms-input-placeholder { /* IE 10+ */
    color: #000000;
}

:-moz-placeholder { /* Firefox 18- */
    color: #000000;
}

.radio-buttons {
    position: relative;
    padding-left: 43px;
    padding-top: 7px;
    padding-bottom: 7px;
    display: block;
    cursor: pointer;
}

.radio-buttons input {
    display: none;
}

.radio-buttons span {
    position: absolute;
    top: 50%;
    margin-top: -17px;
    left: 0;
    width: 34px;
    height: 34px;
    border: 1px solid #000000;
    background: #ffffff;
}

.radio-buttons input[type="checkbox"]:checked + span,
.radio-buttons input[type="radio"]:checked + span {
    background: #000000;
}

.custom-select {
    position: relative;
}

.custom-select .form-control {
    text-indent: 0;
    padding: 0 10px;
    background: url("../dist/icons/arrow-down.png") 98% center no-repeat #fff;
    background-size: 22px;
}

.custom-select:after {
    position: absolute;
    width: 22px;
    height: 11px;
    background: url("../dist/icons/arrow-down.png") center center no-repeat;
    background-size: 22px;
    right: 9px;
    top: 50%;
    margin-top: -6px;
}