h1 {
    font-size: 38px !important;
    color: #866348;
    margin-bottom: 30px;
}

h2 {
    font-size: 26px !important;
    color: #866348;
    margin-bottom: 20px;
}

h1, h2, h3, h4 {
    text-align: center;
}

.introduction:last-of-type {
    margin-bottom: 60px
}

.form-form {
    width: 50%;
    /* font-size: 0; */
    padding: 35px 2%;
    /* background: #ebebeb; */
    border: 1px solid #866348;
    margin: auto;
    margin-bottom: 60px;
}

@media only screen and (max-width: 768px) {
    .form-form {
        width: 100%;
    }
}

@media only screen and (min-width: 769px) and (max-width: 992px) {
    .form-form {
        width: 80%;
    }
}

.form-error-profile, .form-error-password {
    margin: 40px 0;
    padding: 20px 40px;
    text-align: center;
    background: rgba(193, 34, 40, 0.39);
    border: 2px solid rgb(193, 34, 40);
    color: rgb(193, 34, 40);
    display: none;
    -webkit-transition: all 1s ease;
    transition: all 1s ease;
    opacity: 0;
}

.show-error {
    opacity: 1;
    display: block;
    -webkit-transition: opacity 0.5s ease;
    transition: opacity 0.5s ease;
}

.error-message-profile li, .error-message-password li {
    padding: 0;
    text-align: left;
}

.form-form select:focus, .form-form input[type="text"]:focus {
    border: 2px solid #5BB365;
}

.checkbox {
    vertical-align: middle;
}

button.formSubmit {
    display: none;
    margin-bottom: 30px;
    color: white !important;
    padding: 7px 50px !important;
    background: #866348;
    border: 2px solid #866348;
    width: 200px;
}

button.formSubmit:hover {
    background: #7e4818;
    cursor: pointer;
}

.center {
    text-align: center;
    margin: 0 auto;
}

.require {
    color: #A4001D;
    font-weight: 600;
}

.failed {
    border: 2px solid #d9272d !important;
}

/* FANCY TEXT BOX */

:focus {
    outline: none;
}

.input-div {
    display: block;
    width: 100%;
    position: relative;
}

.input-div.other{
    display:inline-block;
    width:69%
}

input[type="text"], input[type="password"] {
    line-height: 24px;
    color: #272727;
    width: 100%;
    box-sizing: border-box;
    letter-spacing: 1px;
}

.effect-16 {
    border: 0 !important;
    padding: 4px 0 !important;
    border-bottom: 1px solid rgb(117, 117, 117) !important;
    background-color: transparent !important;
}

.effect-16~.focus-border {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #866348;
    transition: 0.3s;
}

.effect-16:focus~.focus-border,
/* .effect-16:-webkit-autofill~.focus-border, */

.has-content.effect-16~.focus-border {
    width: 100%;
    transition: 0.3s;
}

.effect-16~label {
    text-align: left;
    position: absolute;
    left: 0;
    width: 100%;
    top: 9px;
    color: rgb(117, 117, 117);
    transition: 0.3s;
    letter-spacing: 0.5px;
    cursor: text;
}

.effect-16:focus~label,
/* .effect-16:-webkit-autofill~label, */

.has-content.effect-16~label {
    top: -16px;
    font-size: 12px;
    color: #866348;
    transition: 0.3s;
}

.margin-top-30 {
    margin-top: 30px;
}

.width-100 {
    display: block;
    width: 100%;
    margin: 30px 1%;
}

.form-form select {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    height: 40px;
    color: #1d1d1d;
    padding: 0px 10px;
    width: 100%;
    border: 2px solid #bcbec0;
    outline-color: transparent;
    outline-style: none;
}

.description, .description-text {
    margin-left: 1%;
    margin-right: 1%;
    color: #7e7e7e;
}

.description-text {
    margin-top: -30px;
}

/* /RADIO BUTTON STYLES/ */

/* The container */

.form-radio {
    padding-top: 4px;
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 1em;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.form-radio.other,
.form-checkbox.other {
    display:inline-block;
    width: 30%;
}

/* Hide the browser's default radio button */

.form-radio input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

/* Create a custom radio button */

.checkmark {
    position: absolute;
    top: 5px;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: #fff;
    border: 1px solid #866348;
    border-radius: 50%;
}

/* On mouse-over, add a grey background color */

.form-radio:hover input~.checkmark {
    background-color: #ccc;
}

/* When the radio button is checked, add a blue background */

.form-radio input:checked~.checkmark {
    background-color: #866348;
}

/* Create the indicator (the dot/circle - hidden when not checked) */

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the indicator (dot/circle) when checked */

.form-radio input:checked~.checkmark:after {
    display: block;
}

/* Style the indicator (dot/circle) */

.form-radio .checkmark:after {
    top: 8px;
    left: 8px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: white;
}

/*--------------------------------*/

/*CHECK BOX STYLES*/

/*--------------------------------*/

/* Customize the label (the container) */

.form-checkbox {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 0;
    padding-bottom: 0!important;
    cursor: pointer;
    font-size: 22px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    font-size: 0.8em;
    margin-bottom: 15px;
    padding-top: 7px;
}

/* Hide the browser's default checkbox */

.form-checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

/* Create a custom checkbox */

.checkbox-checkmark {
    position: absolute;
    top: 5px;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: #fff;
    border: 1px #866348 solid;
}

/* On mouse-over, add a grey background color */

.form-checkbox:hover input~.checkbox-checkmark {
    background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */

.form-checkbox input:checked~.checkbox-checkmark {
    background-color: #866348;
}

/* Create the checkmark/indicator (hidden when not checked) */

.checkbox-checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the checkmark when checked */

.form-checkbox input:checked~.checkbox-checkmark:after {
    display: block;
}

/* Style the checkmark/indicator */

.form-checkbox .checkbox-checkmark:after {
    left: 7px;
    top: 1px;
    width: 10px;
    height: 17px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

#puppies-div,
.hidden {
    display: none;
}

.input-group.date{
    margin: 1%
}

.brown-ul{
    color: #866348;
}