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

.rates {
    @include mixins.dashPageComponent;
    & {
        padding-top: 0;
        padding: 2rem 2rem;
        position: relative;
    }


    form {
        label {
            @include mixins.formLabel; 
            color: variables.$col-white; 
            font-weight: 500;
        }
        input {
            @include mixins.formInput;
            position: relative;
        }
        select {
            @include mixins.formSelect
        }
        button {
            @include mixins.formButton;
            background: variables.$col-orange;
            color: variables.$col-dark;
            transition: all ease-in-out .5s;
            &:hover {
                background-color: #e66a00;
                box-shadow: 0 0 6px rgba(255, 122, 0, 0.4);
            }
        }
    }

    &__helper {
        display: flex;
        justify-content: center;
        align-items: center;
        position: absolute;
        z-index: 10;
        left: 45%;
        top: 45%;
        @media only screen and (max-width: 1000px) {
            top: 47.4%;
            left: 43%;
        }

        img {
            height: 60px;
            width: 60px;

            @media only screen and (max-width: 1000px) {
                height: 35px;
                width: 35px;
            }
        }

    }
}