/* Google SSO Button Styles */

/* Divider with OR text */
.divider-container {
    margin: 20px 0;
}

.divider {
    position: relative;
    text-align: center;
    margin: 20px 0;
}

.divider:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background-color: #e0e0e0;
}

.divider span {
    position: relative;
    display: inline-block;
    background-color: #fff;
    padding: 0 15px;
    color: #666;
    font-size: 14px;
    font-weight: 400;
    z-index: 1;
}

/* Google Sign-in Button */
.btn-google {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 24px;
    background-color: #fff;
    color: #3c4043;
    border: 2px solid #4285f4;
    border-radius: 6px;
    font-family: "Lato", sans-serif, Roboto, Arial, sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(66, 133, 244, 0.15);
    position: relative;
}

.btn-google:hover {
    background-color: #4285f4;
    color: #ffffff;
    border-color: #4285f4;
    box-shadow: 0 4px 12px rgba(66, 133, 244, 0.3);
    transform: translateY(-2px);
}

.btn-google:hover svg path {
    filter: brightness(0) invert(1);
}

.btn-google:active {
    background-color: #3367d6;
    border-color: #3367d6;
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(66, 133, 244, 0.25);
}

.btn-google:focus {
    outline: none;
    box-shadow: 0 0 0 4px rgba(66, 133, 244, 0.25);
}

.btn-google svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    transition: filter 0.3s ease;
}

/* Responsive adjustments */
@media only screen and (max-width: 767px) {
    .btn-google {
        font-size: 15px;
        padding: 14px 20px;
        gap: 10px;
    }

    .btn-google svg {
        width: 18px;
        height: 18px;
    }

    .divider span {
        font-size: 13px;
        padding: 0 10px;
    }
}
