/* Google OAuth Button Styling */
.tk-social-login {
    margin: 20px 0;
    padding: 10px;
    width: 100%;
    box-sizing: border-box;
}

.tk-separator {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 15px 0;
    width: 100%;
}

.tk-separator::before,
.tk-separator::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid #ddd;
}

.tk-separator span {
    padding: 0 10px;
    color: #666;
    font-size: 14px;
}

.tk-btn-google {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 48px;
    padding: 0 20px;
    border: 2px solid #ddd;
    border-radius: 10px;
    text-decoration: none;
    color: #333;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.2;
    transition: all 0.3s ease;
    background: white;
    box-sizing: border-box;
}

.tk-btn-google:hover {
    background-color: #EA4335;
    border-color: #EA4335;
    text-decoration: none;
    color: white;
}

.tk-btn-google:hover svg path {
    fill: white;
}

.tk-btn-google svg {
    width: 20px;
    height: 20px;
    margin-right: 10px;
    flex-shrink: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .tk-btn-google {
        padding: 15px 30px;
        font-size: 14px;
    }
    
    .tk-btn-google svg {
        width: 18px;
        height: 18px;
        margin-right: 8px;
    }
}
