.form--subscribe {
    position: relative;

    input {
        height: 40px;
    }

    button {
        @include vertical-align();
        right: 0;
        background-color: transparent;
        border: none;
        font-weight: 700;
        text-transform: uppercase;
        color: $color-heading;
        height: 30px;
        padding: 0 20px;
    }
}

.form--primary-search {
    position: relative;

    button {
        @include vertical-align();
        right: 0;
        background-color: transparent;
        border: none;
        font-weight: 700;
        text-transform: uppercase;
        color: $color-heading;
        height: 30px;
        padding: 0 20px;
    }
}

.form--contact {
    margin-bottom: 30px;

    .form-group {
        margin-bottom: 35px;
    }

    .form__submit {
        .btn--custom {
            min-width: 175px;
            text-align: center;
        }
    }
}

.form--auth {
    .form__header {
        text-align: center;
        padding-bottom: 10px;

        h3 {
            font-size: 20px;
            text-transform: uppercase;
        }
    }

    .form__actions {

        p {
            a {
                color: $color-1st;

                &:hover {
                    text-decoration: underline;
                }
            }
        }

        button {
            min-width: 175px;
            width: 100%;
            text-align: center;
        }
    }

    @media screen and (min-width: 992px) {
        .form__header {
            padding-bottom: 20px;

            h3 {
                font-size: 30px;
            }
        }

        .form__actions {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 10px;

            button {
                width: auto;
            }
        }
    }
}

.form--login {
    .form__password {
        position: relative;

        a {
            display: block;
            margin-top: 20px;
        }
    }

    @media screen and (min-width: 768px) {
        .form__password {
            position: relative;

            a {
                display: inline-block;
                vertical-align: top;
                margin-top: 0;
                @include vertical-align();
                right: 10px;
            }
        }
    }
}

.form--shopping-cart {
    .form__section {
        h4 {
            margin-bottom: 20px;
            position: relative;
            font-size: 18px;
            text-transform: uppercase;
            font-weight: 600;
            line-height: 1em;
            padding-bottom: 5px;

            &:before {
                content: '';
                position: absolute;
                top: 100%;
                left: 0;
                width: 100px;
                height: 2px;
                background-color: $color-heading;
            }
        }
    }
}

.form--visa-method {
    padding: 10px 15px;
    background-color: #f9f9f9;
}

.form--edit-shipment-information {
    padding: 10px 15px;

    .form-control {
        background-color: #fff;
    }

    @media screen and (min-width: 768px) {
        padding: 20px 30px;
    }
}

.form--review-product {
    .form__submit {
        button {
            min-width: 175px;
        }
    }
}
