.button-custom {
    appearance: button;
    background-color: transparent;
    border-radius: 4px;
    box-sizing: border-box;
    color: #114ff8;
    font-weight: bold;
    cursor: pointer;
    font-size: 14px;
    line-height: 1.15;
    overflow: visible;
    padding: 12px 16px;
    position: relative;
    text-align: center;
    text-transform: none;
    transition: all 80ms ease-in-out;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    width: fit-content;
    text-decoration: none;
}

.button-custom:disabled {
    opacity: .5;
}

.button-custom:focus {
    outline: 0;
}

.button-custom:hover {
    background-color: #4876f5c5;
    border-color: #4876f5c5;
}

.button-custom:active {
    background-color: #396eff;
    border-color: #396eff;
    color: #396eff;
}


.button-google {
    appearance: none;
    background-color: #FAFBFC;
    border: 1px solid rgba(27, 31, 35, 0.15);
    border-radius: 6px;
    box-shadow: rgba(27, 31, 35, 0.2) 0 1px 10px, rgba(255, 255, 255, 0.25) 0 5px;
    box-sizing: border-box;
    color: #24292E;
    cursor: pointer;
    display: inline-block;
    font-size: 14px;
    font-weight: 200;
    line-height: 20px;
    list-style: none;
    padding: 6px 16px;
    position: relative;
    transition: background-color 0.2s cubic-bezier(0.3, 0, 0.5, 1);
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    vertical-align: middle;
    white-space: nowrap;
    word-wrap: break-word;
    text-decoration: none;
    text-align: center;
}

.button-google:hover {
    background-color: #F3F4F6;
    text-decoration: none;
    transition-duration: 0.1s;
}

.button-google:disabled {
    background-color: #FAFBFC;
    border-color: rgba(27, 31, 35, 0.15);
    color: #959DA5;
    cursor: default;
}

.button-google:active {
    background-color: #EDEFF2;
    box-shadow: rgba(225, 228, 232, 0.2) 0 1px 0 inset;
    transition: none 0s;
}

.button-google:focus {
    outline: 1px transparent;
}

.button-google:before {
    display: none;
}

.button-google:-webkit-details-marker {
    display: none;
}

.active {
    background-color: #4876f58a;
    border-color: #4876f58a;
    color: #114ff8;
}

.text-outline {
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: #111827;
    text-stroke-width: 1px;
    text-stroke-color: #111827;
    color: transparent;
}