
.input {
    display: flex;
    flex-direction: column;
    width: auto;
    label {
        color: var(--grey-800);
        font-size: 14px;
    }
    input {
        border: 1px solid var(--grey-400);
        height: 45px;
        border-radius: 23px;
    }
}

.input_orange_border {
    display: flex;
    flex-direction: column;
    width: auto;
    flex: 1;
    label {
        color: var(--grey-800);
        font-size: 14px;
    }
    textarea {
        border: 1px solid var(--orange-700);
        height: auto;
        border-radius: 23px;
        padding: 12px 20px;
        outline: unset;
        resize: none;
    }
    input {
        border: 1px solid var(--orange-700);
        height: 45px;
        border-radius: 23px;
        padding: 12px 20px;
        outline: unset;
    }
}
