@use "../../../../../styles/abstracts/mixins";
@use "../../../../../styles/abstracts/variables";

.pin {
    @include mixins.pageBase;
    &{
        border: 1px solid variables.$col-table-bg;
    }

    form {
        label {
            @include mixins.formLabel
        }
        input {
            @include mixins.formInput
        }
        button {
            @include mixins.formButton;
            color: variables.$col-dark;
            background: variables.$col-orange;
            margin-top: 1.5rem;
        }
        small {
            font-weight: 500;
            font-size: .8rem;
            opacity: .85;
            color: variables.$col-white;
        }
    }
}