.normal-button-pill {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 128px;
    height: 64px;
    border-radius: 100vw;
    background: linear-gradient(90deg, #e3e9f7 0%, #f7fafd 100%);
    border: 2px solid #b6c6e3;
    cursor: pointer;
    user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
}

.normal-button-pill:hover {
    background: linear-gradient(90deg, #d7e7ff 0%, #e3e9f7 100%);
    box-shadow: 0 2px 12px 0 rgba(80, 120, 200, 0.10);
    border-color: #87afeb;
}

.normal-button-pill svg {
    z-index: 1;
    width: 70%;
    height: 70%;
    position: relative;
    fill: currentColor;
    color: #3a5fa8;
    transition: color 0.2s;
}

.normal-button-pill:hover svg {
    color: #1a3f78;
}

.normal-button-pill .label {
    position: absolute;
    z-index: 1;
    top: -2.5em;
    pointer-events: none;
    font-size: 0.9em;
    font-weight: 700;
    white-space: nowrap;
    color: #1a3f78;
    padding: 0.4em 0.8em;
    border-radius: 0.4em;
    opacity: 0;
}

.normal-button-pill:hover .label {
    opacity: 1;
}

