.eventRegistrationForm {
    position: relative;
}

.eventRegistrationForm .mrow {
    margin-right: -14px;
    margin-left: -14px;
}

.eventRegistrationForm div[class^="col"] {
    padding-right: 14px;
    padding-left: 14px;
}

.eventRegistrationForm__title {
    margin-bottom: 50px;
    color: #A60D2E;
    font-family: "eb_garamondregular";
    font-size: 25px;
    padding-top: 0;
    margin-top: 0;
}

.eventRegistrationForm__label {
    font-family: 'fira_sansbook', sans-serif;
    font-size: 12px;
    color: #37647C;
    letter-spacing: 0;
    text-transform: uppercase;
}

.eventRegistrationForm__input {
    background: #FFFFFF;
    border: 1px solid #DEDEDE;
    display: block;
    height: 45px;
    width: 100%;
    font-size: 16px;
    padding-right: 10px !important;
    padding-left: 10px !important;
    font-family: 'fira_sansbook', sans-serif;
}


.eventRegistrationForm__textarea:focus,
.eventRegistrationForm__input:focus {
    outline: 0;
    box-shadow: none;
    border-color: #37647C;
}

.eventRegistrationForm__textarea {
    background: #FFFFFF;
    border: 1px solid #DEDEDE;
    font-size: 16px !important;
    padding-right: 10px;
    padding-left: 10px;
    font-family: 'fira_sansbook', sans-serif !important;
}

.eventRegistrationForm__inputGroup {
    margin-bottom: 30px;
}

.eventRegistrationForm__checkboxGroup {
    margin-bottom: 30px;
}

.eventRegistrationForm__textareaGroup {
    margin-bottom: 20px;
}

.eventRegistrationForm__submit {
    line-height: 34px;
    background-color: #A60D2E;
    border-color: #A60D2E;
    color: white;
    margin-bottom: 50px;
    text-align: center;
    padding: 0 15px;
    min-width: 197px;
    text-transform: uppercase;
    display: inline-block;
    margin-right: 28px;
    font-size: 15px;
}

.eventRegistrationForm__submit:focus {
    outline: 0;
    box-shadow: none;
}

.eventRegistrationForm__download {
    line-height: 34px;
    background-color: white;
    border: 1px solid #A60D2E;
    color: #A60D2E;
    margin-bottom: 50px;
    text-align: center;
    padding: 0 15px;
    min-width: 197px;
    text-decoration: none;
    text-transform: uppercase;
    display: inline-block;
    font-size: 15px;
}

.eventRegistrationForm__download:hover,
.eventRegistrationForm__download:active,
.eventRegistrationForm__download:visited {
    color: #A60D2E;
    text-decoration: none;
}

.eventRegistrationForm__checkbox {
    margin-right: 10px;
}

.eventRegistrationForm__checkboxLabel {
    font-family: 'fira_sansbook', sans-serif;
    font-size: 12px;
    color: #797979;
    letter-spacing: 0;
    line-height: 20px;
    vertical-align: middle;
}

.eventRegistrationForm__separator {
    border-color: #E5E5E5;
    margin-bottom: 70px;
}

.eventRegistrationForm__checkboxGroup {
    position: relative;
    cursor: pointer;
}

.eventRegistrationForm__checkboxGroup input[type="checkbox"] {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.eventRegistrationForm__checkboxGroup label {
    position: relative;
    display: inline-block;
    padding-left: 30px;
    cursor: pointer;
}

.eventRegistrationForm__checkboxGroup label::before,
.eventRegistrationForm__checkboxGroup label::after {
    position: absolute;
    content: "";
    display: inline-block;
}

/*Outer box of the fake checkbox*/
.eventRegistrationForm__checkboxGroup label::before {
    height: 20px;
    width: 20px;
    border: 1px solid #DFDFDF;
    background-color: white;
    left: 0;
    top: 0;
}

/*Checkmark of the fake checkbox*/
.eventRegistrationForm__checkboxGroup label::after {
    height: 7px;
    width: 12px;
    border-left: 2px solid #37647C;
    border-bottom: 2px solid #37647C;
    transform: rotate(-45deg);
    left: 4px;
    top: 5px
}

/*Hide the checkmark by default*/
.eventRegistrationForm__checkboxGroup input[type="checkbox"] + label::after {
    content: none;
}

/*Unhide on the checked state*/
.eventRegistrationForm__checkboxGroup input[type="checkbox"]:checked + label::after {
    content: "";
}

/*Adding focus styles on the outer-box of the fake checkbox*/
.eventRegistrationForm__checkboxGroup input[type="checkbox"]:focus + label::before {
    outline: 0;
    box-shadow: none;
    border-color: #37647C;
}

.eventRegistrationForm__inputGroup.has-error .eventRegistrationForm__input {
    border-color: #A60D2E;
}

.eventRegistrationForm__checkboxGroup.has-error input[type="checkbox"] + label::before {
    border-color: #A60D2E;
}

.eventRegistrationForm__checkboxGroup.has-error input[type="checkbox"]:focus + label::before {
    border-color: #37647C;
}

.eventRegistrationForm__inputGroup.has-error .eventRegistrationForm__input:focus {
    outline: 0;
    box-shadow: none;
    border-color: #37647C;
}

.eventRegistrationForm__alert {
    color: #a94442;
    background-color: #f2dede;
    border-color: #ebccd1;
    position: absolute;
    top: -65px;
    right: 0;
    left: 0;
    text-align: center;
    border-radius: 0;
    padding: 10px;
}

@media (max-width: 991px) {
    .eventRegistrationForm__separator {
        margin-bottom: 50px;
    }

    .eventRegistrationForm__title {
        margin-bottom: 30px;
    }

    .eventRegistrationForm__submit {
        margin-bottom: 14px;
    }

    .eventRegistrationForm__alert {
        color: #a94442;
        background-color: #f2dede;
        border-color: #ebccd1;
        position: absolute;
        top: -46px;
        right: 0;
        left: 0;
        text-align: center;
        border-radius: 0;
        padding: 4px;
    }
}
