.button {
    align-items: center;
    border: 1px solid transparent;
    border-radius: var(--radius-small);
    display: inline-flex;
    font-weight: 700;
    gap: 10px;
    justify-content: center;
    min-height: 46px;
    padding: 0 18px;
}

.button:hover {
    transform: translateY(-1px);
}

.button--primary {
    background: var(--color-primary);
    color: #ffffff;
}

.button--primary:hover {
    background: var(--color-primary-hover);
}

.button--google {
    background: #ffffff;
    color: #16171a;
    min-height: 52px;
    width: 100%;
}

.button--google:hover {
    background: #f2f2f3;
}

.button__icon {
    height: 20px;
    width: 20px;
}
