.button {
    font-style: normal;
    font-weight: 400;
    border-radius: 4px;
    font-size: 16px;
    line-height: 24px;
    border: 1px solid;
    padding: 8px 16px;
    min-width: 150px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}
.button.img {
    margin-right: 80px;
}
.button.primary {
    background-color: #006be8;
    border-color: #006be8;
    color: #fff;
}
.button.primary:hover {
    background-color: #40a9ff;
    border-color: #40a9ff;
}
.button.primary:active {
    background-color: #096dd9;
    border-color: #096dd9;
}
.button.secondary {
    background-color: #fff;
    border-color: #fff;
    color: #262626;
}
.button.secondary:hover {
    color: #40a9ff;
}
.button.secondary:active {
    border-color: #096dd9;
    color: #096dd9;
}
.button.disabled, .button.disabled:hover, .button.disabled:active {
    background-color: #f5f5f5;
    border-color: #d9d9d9;
    color: #bfbfbf;
    cursor: auto;
}
.button.link {
    padding: 0;
    border: none;
    background: none;
    color: #1890ff;
}
.button.link.disabled {
    color: #bfbfbf;
}
.button.loginButton {
    width: 320px;
}
.radio-buttons {
    display: flex;
    justify-content: flex-start;
}
.radio-buttons button {
    background-color: #fff;
    color: #262626;
    padding: 5px 16px;
    font-size: 14px;
    line-height: 22px;
    height: 32px;
    box-sizing: border-box;
}
.radio-buttons button.secondary {
    border: none;
    box-shadow: inset 0px -1px 0px #d9d9d9, inset 0px 1px 0px #d9d9d9;
}
.radio-buttons button.secondary:first-child {
    box-shadow: inset 1px 0 0 #d9d9d9, inset 0px -1px 0 #d9d9d9, inset 0 1px 0 #d9d9d9;
}
.radio-buttons button.secondary:last-child {
    box-shadow: inset -1px 0 0 #d9d9d9, inset 0 -1px 0 #d9d9d9, inset 0 1px 0 #d9d9d9;
}
.radio-buttons button:first-child {
    border-radius: 4px 0 0 4px;
}
.radio-buttons button:last-child {
    border-radius: 0 4px 4px 0;
}
.radio-buttons button.primary {
    background-color: #1890ff;
    border-color: #1890ff;
    color: #fff;
}
.radio-buttons button:hover, .radio-buttons button.primary:hover, .radio-buttons button.secondary:hover {
    background-color: #fff;
    color: #40a9ff;
}
.radio-buttons button:active, .radio-buttons button.primary:active, .radio-buttons button.secondary:active {
    background-color: #fff;
    color: #1890ff;
    border-color: #1890ff;
}
