#refer_neighbor_form .field {
    margin-bottom: 15px;
}
#refer_neighbor_form .field label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
}
#refer_neighbor_form .field input {
    width: 100%;
    padding: 8px;
    box-sizing: border-box;
}
#refer_neighbor_form .btn-submit {
    color: #ffffff;
    border: 0;
    border-radius: 8px;
    height: 57px;
    width: 100%;
    font-size: 18px;
    font-weight: 600;
    font-family: var(--title_font);
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}
#refer_neighbor_form .btn-submit.primary {
    background: var(--secondary_color);
}
#refer_neighbor_form .btn-submit.secondary {
    background-color: white;
    border: 1px solid var(--secondary_color);
    color: var(--secondary_color);
}
#refer_neighbor_form .btn-submit.primary:hover {
    background: var(--primary_color);
    color: #ffffff;
}
#refer_neighbor_form .meta-info {
    padding: 0 10px;
    margin-bottom: 40px;
}
#refer_neighbor_form .svg-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
#refer_neighbor_form .svg-icon:before {
    display: block;
    content: '';
    width: 50%;
    padding-bottom: 50%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    margin-bottom: 10px;
}
#refer_neighbor_form .svg-icon.icon-neighbor-users:before {
    background-image: url(../images/users.svg);
}
#refer_neighbor_form .svg-icon.icon-neighbor-cart:before {
    background-image: url(../images/cart.svg);
}
#refer_neighbor_form .svg-icon.icon-neighbor-package:before {
    background-image: url(../images/package.svg);
}
#refer_neighbor_form p {
    margin-bottom: 30px;
    text-align: center;
}
#refer_neighbor_form h3 {
    color: #336350;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 14px;
    padding: 0 30px;
    line-height: 1.5;
}
#refer_neighbor_form .success-container {
    text-align: center;
}
#refer_neighbor_form .success-container p {
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}
@media only screen and (max-width: 479px) {
    #refer_neighbor_form .svg-icon {
        font-size: 12px;
    }
    #refer_neighbor_form label {
        font-size: 14px;
    }
    #refer_neighbor_form .field input {
        height: 40px;
    }
}