.has-success {
    position: relative;
    input[type='text'],
    input[type='url'],
    input[type='tel'],
    input[type='password'],
    input[type='number'],
    input[type='email'],
    textarea {
        border-color: #069907 !important;
        border-width: 1px;
    }
    small {
        color: $brand-success;
    }
    input {
        &+label {
            &+small {
                color: $brand-success;
                &:before {
                    border-top: solid 1px $brand-success !important;
                }
            }
        }
        &:hover,
        &.hover {
            &+label {
                &+small {
                    color: $brand-success;
                    &:before {
                        border-top: solid 1px $brand-success !important;
                    }
                }
            }
        }
        &:focus,
        &:active {
            &+label {
                color: $brand-success;
                &+small {
                    color: $brand-success;
                    &:before {
                        border-top: solid 1px $brand-success !important;
                    }
                }
            }
        }
    }
    &.active,
    &.focus {
        label {
            color: $brand-primary;
        }
    }
    &.disabled {
        label {
            color: $gray-light;
        }
        textarea {
            border: dashed 1px $gray-light;
            background: transparent;
            color: $gray-light;
        }
        small {
            color: $gray-light;
        }
    }
}