/* Google Sign-In Button Container */
#wcgl-google-button {
    margin-top: 20px;
    margin-bottom: 20px;
    text-align: center;
}

/* Ensure the Google button fits well within WooCommerce forms */
.woocommerce form .form-row #wcgl-google-button {
    margin-bottom: 1em;
}

/* Style for error messages */
.wcgl-error {
    color: #721c24;
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
    padding: 10px;
    margin-bottom: 15px;
    border-radius: 4px;
    font-size: 14px;
}

/* Responsive adjustments */
@media screen and (max-width: 600px) {
    #wcgl-google-button {
        width: 100%;
    }
    
    #wcgl-google-button > div {
        width: 100% !important;
    }
}

/* Optional: Add a separator between traditional login and Google login */
.wcgl-separator {
    text-align: center;
    margin: 20px 0;
    overflow: hidden;
}

.wcgl-separator span {
    display: inline-block;
    position: relative;
}

.wcgl-separator span:before,
.wcgl-separator span:after {
    content: "";
    position: absolute;
    top: 50%;
    width: 9999px;
    height: 1px;
    background: #ddd;
}

.wcgl-separator span:before {
    right: 100%;
    margin-right: 15px;
}

.wcgl-separator span:after {
    left: 100%;
    margin-left: 15px;
}