/**
 * @author    Sigmanortec SRL <office@sigmanortec.ro>
 * @copyright 2024 Sigmanortec SRL
 * @license   https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0)
 */

.sgs-buttons {
    margin: 15px 0;
    text-align: center;
}

.sgs-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 250px;
    margin: 5px;
    padding: 11px 20px;
    border: 0;
    border-radius: 26px;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.18);
    transition: opacity 0.15s ease;
}

.sgs-btn:hover,
.sgs-btn:focus,
.sgs-btn:active {
    color: #fff;
    text-decoration: none;
    opacity: 0.88;
}

.sgs-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    margin-right: 10px;
    border-radius: 50%;
    background: #fff;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 17px;
    font-weight: 700;
    line-height: 1;
}

.sgs-label {
    display: inline-block;
}

.sgs-btn-google {
    background-color: #d34836;
}

.sgs-btn-google .sgs-icon {
    color: #d34836;
}

.sgs-btn-facebook {
    background-color: #3b5998;
}

.sgs-btn-facebook .sgs-icon {
    color: #3b5998;
}

@media (max-width: 575px) {
    .sgs-btn {
        display: flex;
        width: 100%;
        min-width: 0;
        margin: 5px 0;
    }
}
