.search__btn {
    max-width: 110px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    border: none;
    background:  var(--pink);
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    line-height: 19.5px;
    color:  #FFFFFF;
    text-transform: uppercase;
}


.button {
    display: flex;
    justify-content: center;
    align-items: center;
    border: none;
    background:  var(--pink);
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    line-height: 19.5px;
    padding: 14px 24px;
    color:  #FFFFFF;
    text-transform: uppercase;
}
.button:disabled {
    background-color: rgba(237, 185, 185, 1);
}

.button:focus, .button:active {
    background-color: rgba(187, 15, 97, 1);
}

.white-button:focus, .white-button:active {
    background-color: rgba(187, 15, 97, 1);
    color: #FFFF;
}

.white-button:disabled {
    background-color: white;

    border-color: rgba(237, 185, 185, 1);
    color:  rgba(237, 185, 185, 1);
}

.white-button {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #FFFFFF;
    border-radius: 6px;
    font-size: 16px;
    border: 1px solid var(--pink);
    font-weight: 600;
    line-height: 19.5px;
    padding: 14px 24px;
    color:  var(--pink);
    text-transform: uppercase;
}