@use 'colours';
@use 'responsive';
@use 'typography';

.search-wrapper {
    display: flex;

    @include responsive.not-desktop {
        flex-direction: column;
    }

    input {
        width: 100%;
    }

    button {
        height: 50px;
        width: 205px;
        margin-left: 24px;
        padding: 0;
        justify-content: center;
        align-items: center;

        @include responsive.not-desktop {
            margin-top: 20px;
            margin-left: 0px;
        }

        p {
            margin: 0;
        }
    }
}